From 8c1aa032d5ccaafdbd074e9cfb8d175b2b6467be Mon Sep 17 00:00:00 2001 From: hal8174 Date: Mon, 13 Jan 2025 20:45:28 +0100 Subject: [PATCH] Solution for closest string 2 --- closest_string_assignment_2/Cargo.lock | 158 +- closest_string_assignment_2/Cargo.toml | 2 +- closest_string_assignment_2/gurobi.log | 68922 +++ closest_string_assignment_2/solution-1.out | 1 + closest_string_assignment_2/solution0.out | 1 + closest_string_assignment_2/solution1.out | 1 + closest_string_assignment_2/solution2.out | 1 + closest_string_assignment_2/solution3.out | 1 + closest_string_assignment_2/solution4.out | 1 + closest_string_assignment_2/src/main.rs | 98 +- closest_string_assignment_2/string-1.in | 4 + closest_string_assignment_2/test.lp | 442570 ++++++++++++++++++ closest_string_assignment_2/validator.py | 1 + 13 files changed, 511707 insertions(+), 54 deletions(-) create mode 100644 closest_string_assignment_2/gurobi.log create mode 100644 closest_string_assignment_2/solution-1.out create mode 100644 closest_string_assignment_2/solution0.out create mode 100644 closest_string_assignment_2/solution1.out create mode 100644 closest_string_assignment_2/solution2.out create mode 100644 closest_string_assignment_2/solution3.out create mode 100644 closest_string_assignment_2/solution4.out create mode 100644 closest_string_assignment_2/string-1.in create mode 100644 closest_string_assignment_2/test.lp mode change 100644 => 100755 closest_string_assignment_2/validator.py diff --git a/closest_string_assignment_2/Cargo.lock b/closest_string_assignment_2/Cargo.lock index 77c1bfa..645775b 100644 --- a/closest_string_assignment_2/Cargo.lock +++ b/closest_string_assignment_2/Cargo.lock @@ -51,6 +51,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "anyhow" +version = "1.0.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" + [[package]] name = "clap" version = "4.5.26" @@ -82,7 +88,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn", + "syn 2.0.96", ] [[package]] @@ -97,8 +103,8 @@ version = "0.1.0" dependencies = [ "clap", "good_lp", - "gurobi", - "itertools 0.14.0", + "grb", + "itertools", ] [[package]] @@ -126,6 +132,47 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" +[[package]] +name = "cstr-enum" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64cf55825ac0b0e8120bdd2cd8f4849ff8f59d049e6808168a4c0853cc3813fe" +dependencies = [ + "cstr-enum-derive", +] + +[[package]] +name = "cstr-enum-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea5208e0c141483a14e4a1844b2859a410cef6a00a6c5fbf58bd1e791e31144e" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "csv" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" +dependencies = [ + "csv-core", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "csv-core" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" +dependencies = [ + "memchr", +] + [[package]] name = "either" version = "1.13.0" @@ -149,20 +196,42 @@ dependencies = [ ] [[package]] -name = "gurobi" -version = "0.3.4" +name = "grb" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f612f4124936819b6cd1a178cbd971df8e77b7b40aa6afacb21e1b232524dbb" +checksum = "a3138eda01bdaddfd22f1e94b792229691a5cf1a4f533bc62e954e57ee6f5bb4" dependencies = [ - "gurobi-sys", - "itertools 0.4.19", + "anyhow", + "cstr-enum", + "csv", + "fnv", + "grb-macro", + "grb-sys2", + "proc-macro2", + "quote", + "serde", + "serde_json", ] [[package]] -name = "gurobi-sys" -version = "0.3.0" +name = "grb-macro" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27abdfeb504168901df67a7ab5f217501ada52d78a882d74be8920b6eeeabbc9" +checksum = "70071e86d36b20a3f2280ef419a0efe9aa8c85b79c318b28a2b707e1ed52b0d0" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "grb-sys2" +version = "10.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8915cdcdcefacae8b07a25984e5b80d2a31fc71db8a97deb1715fd1659b1bfc5" +dependencies = [ + "anyhow", +] [[package]] name = "heck" @@ -176,12 +245,6 @@ version = "1.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" -[[package]] -name = "itertools" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a9b56eb56058f43dc66e58f40a214b2ccbc9f3df51861b63d51dec7b65bc3f" - [[package]] name = "itertools" version = "0.14.0" @@ -191,12 +254,24 @@ dependencies = [ "either", ] +[[package]] +name = "itoa" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" + [[package]] name = "lazy_static" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + [[package]] name = "pkg-config" version = "0.3.31" @@ -221,12 +296,61 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "serde" +version = "1.0.217" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.217" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.96", +] + +[[package]] +name = "serde_json" +version = "1.0.135" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +dependencies = [ + "itoa", + "memchr", + "ryu", + "serde", +] + [[package]] name = "strsim" version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "syn" version = "2.0.96" diff --git a/closest_string_assignment_2/Cargo.toml b/closest_string_assignment_2/Cargo.toml index c753058..ea7f3b5 100644 --- a/closest_string_assignment_2/Cargo.toml +++ b/closest_string_assignment_2/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] clap = { version = "4.5.26", features = ["derive"] } good_lp = "1.11.0" -gurobi = "0.3.4" +grb = "2.0.3" itertools = "0.14.0" diff --git a/closest_string_assignment_2/gurobi.log b/closest_string_assignment_2/gurobi.log new file mode 100644 index 0000000..f106f63 --- /dev/null +++ b/closest_string_assignment_2/gurobi.log @@ -0,0 +1,68922 @@ + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:12:43 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x8a2e0e5a +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+00] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (0 binary) + +Root relaxation: objective 0.000000e+00, 15 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 18 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (15 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:13:10 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x4a6d6980 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+00] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (0 binary) + +Root relaxation: objective 0.000000e+00, 15 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 20 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (15 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:13:35 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x454795bf +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:13:51 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x7ad1e9f7 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:18:35 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x46d2d463 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: objective 0.000000e+00, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 14 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:19:10 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7013198f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:19:19 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x2c1913eb +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+02] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: objective 0.000000e+00, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 13 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:19:54 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x05084c1a +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+02] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: objective 0.000000e+00, 95 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 15 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (95 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:22:45 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x42809e8a +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 88 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (88 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:22:53 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x80f834c6 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:23:18 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x6349566e +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:23:31 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x47f5daae +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:23:40 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xaa5d0454 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 127 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (127 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 14:23:48 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x5f19a8e0 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+02] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: objective 0.000000e+00, 108 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 12 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (108 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:02:46 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xa1919172 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+02] +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:03:36 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x562f651f +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+02] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: objective 0.000000e+00, 106 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +H 0 0 0.0000000 0.00000 0.00% - 0s + 0 0 0.00000 0 18 0.00000 0.00000 0.00% - 0s + +Explored 1 nodes (106 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:03:47 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x481481e5 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:04:05 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xdbb5d1be +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: objective 0.000000e+00, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 0.0000000 0.00000 0.00% - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:04:14 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd1e8da6d +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (142 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:06:24 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x19560b9b +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 0 rows and 423 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xfa5fdfad +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 7 rows and 171 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xf704ee99 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 0 rows and 45 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x78bc7873 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 0 rows and 8 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd81ee732 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 9 rows and 417 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x637298f5 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+00] +Presolve removed 0 rows and 319 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xb8b070de +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+00] +Presolve removed 0 rows and 317 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xdc4870c1 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+00] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (273 binary) + +Root relaxation: infeasible, 16 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (16 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xb0f5467a +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+00] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (256 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x170249bb +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+00] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x8a9d3da1 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 20 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (20 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xbadc8a3c +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xf7547f34 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 20 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (20 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xdcbcf6b5 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xf5d8823f +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 1e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xfb67bda0 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x4768d2a2 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x9d4b39ed +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xf7c9de15 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x1ffd0e2e +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd403833c +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xa0401828 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xed25f302 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x8e1d4be5 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x81ca79b7 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xbc5707f1 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd91860a3 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x7602eee7 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x8e8f4211 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xec733733 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xc709e6d0 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x8b2d320b +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x1cc3ee20 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd2ea0905 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 61 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (61 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x9ca28ea6 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x77297eb5 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x8d16b2e3 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 61 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (61 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xae2bc9fa +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x9bb0bea7 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xdbf09d25 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 56 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (56 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xbd8419d0 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x7b21e544 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x2fee33ea +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd2d7a899 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 66 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (66 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x6bcfab1a +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 59 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (59 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x91509543 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x316efe00 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x78ba2c9e +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xf1a1c07f +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 79 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (79 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xc3d5e59c +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x54e06638 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 84 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (84 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x421a8872 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x303dff0b +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xc1efd0b8 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd918819f +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 94 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (94 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xbbfd3005 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xd71e823c +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 94 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (94 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x26d94fc4 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xb3de7b79 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 114 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (114 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xebea6cb0 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 116 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (116 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x3da9a96b +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 82 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (82 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xf249d48c +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x56487fb6 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x1a6f85df +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 105 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (105 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x0251b91c +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xcc815db9 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x196536a3 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xc387822e +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x1a81c704 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x42bd7287 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x74a5b695 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x697e60b6 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 105 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (105 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xdf6bfc1a +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x3a60a92e +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x0b20178e +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 134 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (134 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x32f33e77 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xef7ff8a4 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xe7d052c7 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xbe83a37b +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x64ceb0fc +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x61a104de +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x870f91be +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x7e43839d +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x47c8da1d +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 126 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (126 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xdc957fa2 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xb7cc11a3 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 8e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xa24b6c95 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x5e6e2470 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (142 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0xfc70d577 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x21baa885 +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: infeasible, 141 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (141 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 423 columns and 4013 nonzeros +Model fingerprint: 0x53dad6ca +Variable types: 0 continuous, 423 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 9e+01] +Presolve time: 0.00s +Presolved: 74 rows, 423 columns, 4013 nonzeros +Variable types: 0 continuous, 423 integer (250 binary) + +Root relaxation: objective 0.000000e+00, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 0.0000000 0.00000 0.00% - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:06:30 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef54c7c6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 656 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4893209b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve removed 0 rows and 265 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x282aaec3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [2e+00, 2e+01] +Presolve removed 0 rows and 67 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x27f6a051 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [3e+00, 2e+01] +Presolve removed 0 rows and 12 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbb21321c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe527c3ee +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x566842ed +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6081d4d7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee2666f9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf76f7a5a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9e5f7c8c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2a859ab2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0d23a956 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 2 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x63ef83c9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 61 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc57b406d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd55cb5f9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x27a56fc2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 67 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x337f0d58 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 263 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4b8e9ea9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 12 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x57e8c58b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 5 rows and 652 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x255347a6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0571b470 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (12 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xba8fdb30 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (11 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf1c77b05 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8a874453 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x37946949 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 61 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (61 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5caf64cb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 79 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (79 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x271633f9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 71 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (71 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc92a9a1e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 74 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (74 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x25d1f822 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x040de7e5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb340c70f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6ec0f58 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaf143977 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 71 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (71 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd245a11a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 66 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (66 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8aada44a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x26326579 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xea3414a3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfddeeaf7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x22211e4b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee57106a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdb99a76b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6307756c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x13edf6fe +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x078110ac +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb8f56c6e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa0f355e8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x14035be5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6316b35 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 17 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (17 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbc6e7bd2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 12 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (12 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3e1dcaaa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x41e826b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x65ed9a9d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x93013d24 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 10 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (10 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xabcc2915 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 12 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (12 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x871055b6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 10 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (10 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc01d9a72 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 10 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (10 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9929fcaa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 16 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (16 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3eff809a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xedf08935 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 16 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (16 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6c6f28c1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7fef2350 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2e737355 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 14 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (14 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x70f94e90 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1ae31517 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xafc4463e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 17 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (17 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe51e2bd2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbea00a7d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x99e5315c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2d2324f4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 32 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (32 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x38c3506b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x699f55f7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf9be9ee6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 15 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (15 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd6b97b97 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8dde87e7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6e5d5f4c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x636ada90 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4423c861 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 17 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (17 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3a725208 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6ef7f54f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0079e19b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe9bec79e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1336a8ce +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2dfc3735 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf4962e48 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x789a848e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9b3e8148 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2e2f34a4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x968f4168 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6f3d7e4b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1ea1bdee +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x898a2980 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf96cd1f6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x672c0f12 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x18b8ef91 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 20 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (20 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2423cd03 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0e54b333 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x21f8595f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x81775961 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x48122d97 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59b53cde +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x75fbd871 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1d0e6326 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xedfcc385 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb6d7e6af +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0fa8fef9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb922d98e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdddcd07f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4d1ec08e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8414a299 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x06654d4a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdec1819b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2dd216fe +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xda25b46f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 32 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (32 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x766d4dda +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa964412e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x67829575 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb09d3929 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb891e598 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x47204534 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xec97c202 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe4604861 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9de7fc14 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6fb08b90 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeac695b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x962bed10 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfb664146 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa2dea77c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2626d647 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x89698151 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x67827ec2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa0424454 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbfda568d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x23680495 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7ede0f97 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8c5765a1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf8ff7c7c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x67f3947f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x90b17c2d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa0a4e01b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0d0f87a8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x01a171ea +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x33b7c91f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6be0d0fb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 54 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (54 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfdaf8042 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1e3476b1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9913e093 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3df46a58 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 49 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (49 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8c5aac6c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc1abf706 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3f4087d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9b7ff190 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9506b926 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3d8e18d0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa272e00a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc6a640f6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1b47edd7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x52728c24 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbf3c6f86 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe014590e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0685211e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbc39d646 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1bb3c92f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaad3e4ed +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb149aade +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb1b5db7a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x513161ff +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5f8a5b33 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe0b98646 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x44849949 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 56 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (56 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x97d8e70e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2353af6c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x29276976 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9e593e26 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2ad65521 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x098112c6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x823393ed +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa5654e6b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcd6e4d32 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x03784711 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 75 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (75 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xed97a25f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 56 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (56 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1a521be8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x224dba32 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 82 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (82 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaa99a51a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7b711bbf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdd436ecd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0a34891a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee227031 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3b4b6ad8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe1e6077f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x236f6838 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa750e1b1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x21764058 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd0b6f7ba +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3141c929 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 49 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (49 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0397a929 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 71 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (71 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb4ee4482 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6ae04dd9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef238b06 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x736454ae +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4dd4deac +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 59 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (59 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x05b442d6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x672edbf7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 87 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (87 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8cc19ad5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbe5e087f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x62aeacf1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa01fe08e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4be2c93f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x67d0925e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf9feb0c3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa89ffe5f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 79 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (79 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x43aaf2c5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 61 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (61 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaff5912f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe072ad9d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x481aac51 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x813b257c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 64 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (64 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x77c5354f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 66 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (66 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x20725088 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3df82680 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x44dc9030 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 74 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (74 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9aa96e8d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcb376838 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6245d986 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 84 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (84 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x856f64ab +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee59036d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe3a6a596 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfc6151b5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc4c8d61a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5657b366 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 88 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (88 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x92b42177 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 73 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (73 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf7993bcb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdfdc5c92 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 54 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (54 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd0862a95 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 84 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (84 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaabf606f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb62c89b3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5ae1aa74 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 87 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (87 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x266fd2f6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 84 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (84 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6510776 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc304bcae +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8805ae33 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 94 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (94 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1e63c764 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x62a87769 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa9959baa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 77 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (77 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4826907e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 64 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (64 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd1010293 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x192b15d7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 87 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (87 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7b7bb860 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1aea009a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 88 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (88 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x28d12bfc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 88 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (88 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc87c22c9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x44debaf0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x276bdf8a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf4467cf1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 87 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (87 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9d23141e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf8059c15 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x91a8b634 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6a727e0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 64 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (64 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x490ec525 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 89 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (89 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa495a075 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe3481edc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x72b58631 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6957b5c3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7738e791 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1c936f2f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 79 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (79 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8ea71393 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3aef5a42 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6afb827a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xadcb98a8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcd58e5be +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x08ff3c77 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 74 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (74 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef264a1a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x050ec2d1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4b2d4894 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 87 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (87 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x56508891 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1ef6e2d1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9505a610 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x48081c8f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x44ac851f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 79 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (79 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x79561121 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8debfafd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf66c750c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x65893633 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 117 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (117 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x140cb513 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7d1ad815 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf3586beb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3bbabc94 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x50722783 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbdc2383c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 93 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (93 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1a51ec6a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xff9dc599 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59178f38 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 77 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (77 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xec7851bd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 112 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (112 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x284848e5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59c7bd19 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x32a05195 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdf631826 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4c7de92a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x94411767 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xec01d661 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 73 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (73 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbae5b90f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbc0b6d0a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 74 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (74 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9601cec7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 125 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (125 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x90b40205 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 90 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (90 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa847faff +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x13b4630e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 90 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (90 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbf0c3014 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3cbba822 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2d2f997f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x87d31769 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 95 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (95 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x06cb6e69 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x41ea33fa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (120 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0119825e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaa42ca74 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 130 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (130 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1a9d2785 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 106 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (106 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb1001ca1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc9805b25 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 112 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (112 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0b0f92ea +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x264c04b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8bf63ca1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe4264c28 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 108 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (108 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x762cb9ba +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5335df32 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe39a1e94 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8236bdd4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3aef3037 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x71336722 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 95 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (95 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x751c62aa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x83cc6946 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 112 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (112 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9431e4bc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xab148144 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 94 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (94 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8ecffa8e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0055f8b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd06304bd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4182d43c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfb441086 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf8cbe5e0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 105 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (105 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8d3b4376 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc819f1d4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb8ad968e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 126 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (126 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xea1d4bc3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbd158a55 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfcd4faf1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x636bd3cd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb669606e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x023e1d5f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x89f19326 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdadad880 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb83ff273 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcbb21e7b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8274c050 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc4162361 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0b2e36c8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8f2a2ff2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2686b984 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 117 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (117 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x60d48d29 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0f448b00 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbec8d5fe +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x45cce1dc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x49b8deca +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6885b30d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x54b24ea4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x387c89a7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6c1e40d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa4faceee +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9fa567d8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x666bfda2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (120 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x66133b0b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 108 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (108 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd12f812a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa991255f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (142 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4c6197b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbc43206a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 136 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (136 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe612af26 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x012d3d17 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb025a1fb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (131 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa016a8d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (120 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x783e1316 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 136 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (136 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf65e150b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x170e4384 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x376aaa7e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc694d8fc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcf337109 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x763ea6dc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7107a9c9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x684c85af +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf0a30f90 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 95 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (95 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xffa29121 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0e2e8eed +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 117 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (117 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb842c3e0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 114 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (114 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcbd86f46 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x67b07dcc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x78eeec83 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc8544206 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9f14e6ce +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 124 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (124 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x900450d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 127 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (127 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8b6893ea +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 105 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (105 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf5a56a14 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xea64409b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x32109d71 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9e139c91 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb6d645fd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x72ac33df +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcc58a342 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 124 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (124 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x98859efc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x33d32de3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x26ebb5eb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 141 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (141 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x09c5dfa8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 135 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (135 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe328cecd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa149ec3b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 129 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (129 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc6792a6f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x86d55c4e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 116 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (116 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x79204c76 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x04d41b24 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 117 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (117 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x43a4f4ef +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8c0b353b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfaf1c2dc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb568db3c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa4363241 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 127 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (127 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7e4b7d25 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc8f92caa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x87b09370 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa29fd05c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef6c28c9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcccd7727 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5d611880 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x47222147 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7877f930 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5d90a527 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcfc01c93 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 130 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (130 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6da8873 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 136 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (136 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5e0eea73 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x183b59d5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4dcffbba +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc394faaf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 126 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (126 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf141a930 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xafbe2c71 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0e121c84 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4b466bf8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 129 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (129 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x41f326b6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 129 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (129 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59abe2c5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x262fe1fb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3a01db80 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 135 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (135 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x36bfd36d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 161 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (161 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9e8e340c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 116 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (116 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x78808404 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x05f87070 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 129 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (129 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf8d1f582 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe4f42169 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 108 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (108 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4825b4b7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x92f57619 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9741364d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcc0116b9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 134 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (134 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x18a0c0cb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (142 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc2db955d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc4922824 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 141 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (141 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x885cc5cd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (142 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x55bfb5bf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x22c3a01c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 124 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (124 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa2473972 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 114 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (114 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe6c16c87 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 143 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (143 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe49465b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 130 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (130 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd55a0ab6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x17869d96 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 141 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (141 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x74f425d2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x780b02d4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 113 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (113 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8b7380f0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 135 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (135 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5bb0aa55 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaacebe0a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 136 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (136 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x07a02b70 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa441a027 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xde0c3db4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 143 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (143 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x44dc5c08 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x45615c93 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9bda5a0f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x013e1c72 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4de7f925 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 125 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (125 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x927a1fd8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 139 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (139 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8ccb41e7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbfa69b97 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6485b926 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd8c5cab8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (131 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0f3bf2d2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 141 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (141 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6650b51e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x737b5c25 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x77b3460f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7d73f264 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xae6cd948 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8e5cab60 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x86b3137e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfe99bdd3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9860ac0d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x813cfd4e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 126 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (126 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa9271499 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x972ef148 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfbf87993 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf668001a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1dbeed48 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xed4717bf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 185 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (185 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x871ba717 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 156 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (156 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5b493570 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 156 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (156 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa09b2a47 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 130 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (130 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x056eda88 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 161 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (161 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x690eb696 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x206be02f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xafcc5328 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 164 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (164 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa566275d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2ea7e2dc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 124 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (124 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x698f631b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x04907142 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9f20c99f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbfe595c4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (142 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6a26b5e8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x83fe951f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 143 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (143 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe7bf2e06 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x31443744 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 149 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (149 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe87cfb81 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 146 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (146 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdf2c5795 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 135 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (135 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x363dc3de +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2705315c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 146 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (146 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd6670ab4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 167 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (167 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xab32ae5d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 173 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (173 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9853b723 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (131 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x22d26fbc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 179 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (179 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbb381808 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbdda54f2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xecd5c068 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 146 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (146 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0542946d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6189afd3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4ac16473 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa5d91256 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5b1d4bd3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcf7965da +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xad395ae5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcd4c6283 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcebb2470 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4e174968 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x04f732a5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 149 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (149 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x73076d1e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1b510d97 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 165 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (165 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf1a1f9c6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xac739fca +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x81f28222 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1651ebe4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0b1f4949 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x16d39da6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 134 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (134 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd2055db0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfb7c94bb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 172 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (172 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd0b36dc2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x660469ea +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5cd57d09 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe03e69f7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 125 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (125 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd6ef961f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 209 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (209 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xefc87a39 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 182 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (182 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3d956f5b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6a34269 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 185 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (185 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf60ff26e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 129 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (129 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x616d9b2a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x85cc39b2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb16ceede +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1c3b55fe +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xddfcab4d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 168 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (168 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7bcaf355 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3000b1ea +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4ec992c7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x560ab3ce +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe35e8174 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x38d76148 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x412f6b87 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2e967ebf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 168 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (168 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf010cbd1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 160 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (160 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9ff6c588 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 182 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (182 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x093bf1ec +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x922eb1e3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 173 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (173 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x69648a22 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x82dccf7a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 179 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (179 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xca6a64fc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xce964ca8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdeba78ba +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 177 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (177 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7fd997fb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x557f9c6a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3c49b50f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3473f5a4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 149 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (149 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9f47e9ca +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x16fba703 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 156 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (156 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xccbc4f93 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8b4216cc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 179 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (179 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5a64f885 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd5c2e61e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 166 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (166 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7f84008a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa97ef484 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 207 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (207 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3e7d78e4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 136 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (136 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd1f10961 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6c71803 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x55a9f1b9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (176 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x53ad9f47 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x68165b0a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa5f015e8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 181 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (181 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf4dfeb9c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 156 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (156 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9e4ad052 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8bef8594 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 152 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (152 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xff0b6f27 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdf51fdee +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x481fac75 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 165 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (165 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe31905e8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfe3b70d4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 172 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (172 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x56db4bf3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1e090b14 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7442f184 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4cb2979d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 143 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (143 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x447a76fc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7557a671 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 182 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (182 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x812cad04 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x60a7f2a9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0b59cfc8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 152 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (152 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc87e8a4a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4e76efcb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 177 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (177 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6d6d4be3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 215 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (215 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x80e04585 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 166 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (166 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x71298341 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 187 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb48a8767 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb75c17fa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 172 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (172 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1bf4f69c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 221 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (221 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1b141e24 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa28e1f62 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xac39e1fb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x239e9531 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3a7fb60e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 161 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (161 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x12afa617 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 190 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (190 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x63a67fd4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb451b10b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 172 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (172 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf32a4b9f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 173 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (173 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x32834c0e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 173 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (173 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x674c552d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1a75fcfa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x18a6ab8f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 161 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (161 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe691f988 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (176 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdfd6ceb6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (176 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeb756ea8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 179 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (179 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5d48fe70 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x45a9bf7c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 166 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (166 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x87291df6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x91c6f275 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x535276bb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 183 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (183 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x91ecc4ae +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb9afb709 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 202 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (202 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3af07581 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 149 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (149 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0371a69a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x01b54034 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x56e702ee +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 161 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (161 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xddfd977c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x32654754 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbd4d0718 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 164 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (164 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2a527b6f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xad29556c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5c611d7c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (176 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4b58338f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6769ef8e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 173 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (173 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf3d52363 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7b1ad7e0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb4559285 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcd54d1af +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 156 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (156 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x468e6f73 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 177 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (177 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x249c0ef4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 169 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (169 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x01e94e7a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 195 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (195 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x109bfbcd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc34776ac +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x907d3c33 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 246 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (246 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf0e096f6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x61712202 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 209 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (209 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd50431e4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5af8680c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 184 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (184 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4fb402f6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbbc36a33 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 180 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (180 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x001368f3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5ff1c02c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 168 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (168 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x71e8a4d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 187 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd41a0ea1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 156 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (156 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x650f23e4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x30e56f33 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfc6b57f5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 168 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (168 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x52fb4024 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0223ba3a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x41a28068 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa4c0f7b1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 215 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (215 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8075ffb0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa1de3153 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 187 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef7756d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 172 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (172 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb46c2b2b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 183 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (183 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd5b43371 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeecd2cf2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3ca713d3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd6449f99 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 200 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (200 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x30f1587a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb06082d2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 190 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (190 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xafb98c86 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 204 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (204 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc573dbf3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3b5dcc69 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 206 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (206 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x473d76f2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8f28ed7c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x94230171 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe1d93c9d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 200 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (200 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc85347d2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb4856f70 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 166 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (166 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc19c883c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 183 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (183 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8755dac8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6fc786a8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 207 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (207 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xba41b651 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb6e6a0a9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdbbc06d1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa411002c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 185 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (185 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe7ffa3aa +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8a131dc8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6b8d8ad5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 161 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (161 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x07401a91 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0fba1305 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 207 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (207 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x840d56b8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x66774866 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 187 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x22e560c2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf12a1564 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 184 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (184 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5eeb8566 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x26d26220 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (176 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaffd67e3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe06ea17d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 200 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (200 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1287ff49 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 167 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (167 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x54bff67f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 182 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (182 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0eff4733 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x11e1caf4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 172 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (172 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x941aeee9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x31d40775 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 206 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (206 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8d6d9145 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x50c53261 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb44d6b2e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4cc66b04 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3a465b28 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 223 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (223 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0f2cf162 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1821fac2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x26843b6e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 196 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (196 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9b5ca868 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x80163a9e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 204 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (204 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf9d80b7b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x98d10a91 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 182 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (182 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf5ffc22d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 200 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (200 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbe3e1337 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd1dd366b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaf3dc3ff +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc471a21c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x214cfad8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 216 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (216 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x28503878 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 184 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (184 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8bc82b65 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x84b4d893 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3028b7f2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa9942779 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9aa2725b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdd27b26c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 207 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (207 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2e754e25 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 219 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (219 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2293bcb7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 241 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (241 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x456e750f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef806fc9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x856ccf06 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe6d5324b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf8bce1cb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 190 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (190 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xae9bbf63 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x95403f11 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x427de11c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdcc2fbe3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe8381104 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x48ddf6c6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf5dd1f7a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 173 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (173 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd102d8e5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x440bd2bf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 228 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (228 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8974233e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 191 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (191 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe1780883 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0af7f4b0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 207 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (207 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x763c35cd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x43680f8a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 221 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (221 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8be2e0d0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4f322b87 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x07f2b58c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 228 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (228 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcc831a66 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x795f2635 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 219 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (219 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd2d553b2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa3641234 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 184 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (184 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcc1338cd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 193 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (193 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3a6e16db +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 228 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (228 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6ae80628 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 190 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (190 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1d5d2fa8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 238 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (238 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x55a6485e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9665f076 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8306f048 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 193 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (193 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0aa1f7e1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 185 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (185 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa6dcf17b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf39a023b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 223 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (223 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa6dd1424 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 237 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (237 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0f3b6d04 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 187 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2001790f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd3c04aed +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8039e688 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 164 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (164 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x50af6557 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x84679c5d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaca307f2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb639bddc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x71184eb3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6e8e9e15 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfe7925ca +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5cde03b3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 260 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (260 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x98c52770 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfb693a59 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf6e60260 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 182 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (182 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x246358d1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xae05c7a4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 196 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (196 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x20fb00b0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8f77b6d9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 202 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (202 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaf5f56a2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 257 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (257 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc9090a00 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 244 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (244 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x962a5bdf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x38dfd169 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdf9abbde +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 234 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (234 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x458e5b94 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x99b9094e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 223 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (223 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x03966504 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x54e3fb89 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 196 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (196 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8d3579f7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x829db6ae +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x69ba725c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 248 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (248 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5dd40284 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 247 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (247 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9886aa54 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 251 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (251 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x206972f6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0f08d110 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb157eae0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 200 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (200 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xef213041 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcbb7b724 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x616ce276 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa80b8e69 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 230 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (230 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4d39c553 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2c78276a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 235 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (235 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x736ae73b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x63c91b7f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 215 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (215 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xba9acbc1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4d0ba8b3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcb3e6769 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0b2c9768 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 215 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (215 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa0839a16 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5dc055b0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2892ac4f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa199dc98 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59bf930c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 254 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (254 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd745156c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 204 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (204 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x47e6f6ce +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 235 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (235 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0ef955ef +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x211bbd10 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 231 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (231 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4b53f471 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5df9ba7a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 231 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (231 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe553bf36 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1b5f4184 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 216 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (216 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x379c47a7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf567159b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 244 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (244 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc9f56c01 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 209 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (209 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe3f7da4c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 239 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (239 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4dfcb17a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 235 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (235 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x748a4003 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 234 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (234 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf16e81e6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 206 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (206 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb59ced01 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 192 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (192 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb1751ce8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9fe4bcf2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 249 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (249 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb175e2e6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 215 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (215 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb901231f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 252 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (252 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x25e07105 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc0336197 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x61e9f44a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 228 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (228 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe4495c8f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 238 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (238 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaa217699 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3811131b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 223 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (223 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x33a7de14 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0eb89e61 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 224 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (224 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe6195459 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 246 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (246 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc6f6e336 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 207 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (207 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x90c000de +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 213 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (213 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe07d0428 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 204 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (204 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb938d717 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 206 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (206 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x73712c86 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeb17c7e3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 251 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (251 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5a583aba +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xace0bdf2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 219 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (219 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x619b74df +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 217 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (217 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x945e9286 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 248 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (248 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2989b436 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 220 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (220 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x648c24b3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3dd80de1 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1db76abc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9a7fba03 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xecc9f8bf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x907edfa5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf65b6002 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 239 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (239 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59d2cb07 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 238 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (238 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7c2f0567 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 213 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (213 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0e852b6a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 216 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (216 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1c44f02c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 232 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (232 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x43c02723 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe2ea902d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 224 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (224 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe8647b08 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd0875822 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x90278cd5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 184 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (184 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa1a3f40e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x503174b2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x68b13ee2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc738a8cb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 196 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (196 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe5a9dced +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa801b7e4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 209 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (209 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb75ecee6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: objective 0.000000e+00, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 0.0000000 0.00000 0.00% - 0s + +Explored 1 nodes (210 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:07:18 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:07:31 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:07:38 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:07:39 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9062166a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 656 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x09bdf39f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve removed 0 rows and 265 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa043b762 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [2e+00, 2e+01] +Presolve removed 0 rows and 67 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x16bb3206 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [3e+00, 2e+01] +Presolve removed 0 rows and 12 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x97bb49fd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa95b7df9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2d57950c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb5273a4d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf9402dd9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1b023442 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7ac57c30 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x65923526 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc344d046 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 2 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe7a37c53 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 263 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xea761882 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe7d93a45 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 4 rows and 651 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9e3b43ad +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8921bce6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 263 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xff79aa52 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 64 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x61f0f864 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 12 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x045aa842 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x942a14cb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (12 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x10429949 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (11 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd4e5a5a5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6d9f1133 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 61 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (61 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0d891ac7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2553917a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x53b0d3e6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb0dd5c37 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 75 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (75 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaea9ef0b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 71 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (71 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x66daac2b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 71 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (71 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe2be3e18 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 78 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (78 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x818faa84 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0d6afb4a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdd5129cf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdcfd5296 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 59 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (59 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4481022e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 64 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (64 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9eb4489f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x68b7a4cf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 54 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (54 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbae4dd8a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9a70dc91 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeb8b7254 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb190290c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x580701ae +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc8cd7616 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x18736763 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x70615cd7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x32e8baec +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb0adb6d9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 12 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (12 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1f97312b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 14 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (14 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x59e42624 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x67142e99 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 14 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (14 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x296bba5a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x0c18c44c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 14 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (14 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x283ef14f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9f922769 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x462e8886 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1bee83ac +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5bf11a0a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8ba77520 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 15 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (15 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x01781ffb +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9513c00f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 14 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (14 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x721ecea8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xe9810dff +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x52e3e83b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x03751e83 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xbc573989 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf14d715b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.01s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 17 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (17 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x28e2b2b4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x86e1eb53 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xaf5ae2a4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x291f05fd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1c258a91 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xdcf0bd50 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x099288af +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8029abf0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x48a03fce +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 16 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (16 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6a5c351a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee1a33e6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x40a013fe +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x971f4da6 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 13 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (13 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb23d769d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x1733da3c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9840c553 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc3dda18e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xca7fbfaf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xff97cf65 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xfe0f84bc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8986512b +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x4e4b60fd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcf22f994 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xca657b7e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xcfe1dcd3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3d0c7532 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x672f3322 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xda442b1e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x037b621f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa0ecff94 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeac4ac0a +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x258732a9 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x75dba6d5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5b44c9cf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8721392f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf149b9a3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x722310f7 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x3a975b43 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 32 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (32 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x87225276 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x36ec4261 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7b1a713d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xad9bb93d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x13205751 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7937b601 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9779d01d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb10d4cfc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 32 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (32 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd0573ba3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x376f7712 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xd2e2faa0 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc36c91f5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x45147113 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x626db1ed +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6422ff45 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc1067218 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa15ddde8 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x81b8fa88 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x16156325 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6a91308f +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa855c9ec +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa9a8c5f3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 49 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (49 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x31de3bf4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xa11a6160 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x448fce81 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb572f3b5 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xb8f030bd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee1d23a4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x9ce9247e +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc1b9ca2c +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6291eef4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x8e64c8cf +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7ec47bd4 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x6f7f1200 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc10507db +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x7332e4ba +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xee058fc3 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xeb9dbe80 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xabe5614d +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 54 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (54 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xec69d674 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x35a234bc +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xf0bf6e21 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x2c3a27bd +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0xc6d82dc2 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x45d92992 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 656 columns and 6216 nonzeros +Model fingerprint: 0x5a64e973 +Variable types: 0 continuous, 656 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.00s +Presolved: 110 rows, 656 columns, 6216 nonzeros +Variable types: 0 continuous, 656 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:07:45 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb1d33d55 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1645 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcd7263df +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Presolve removed 0 rows and 688 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.01 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd488dc43 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [2e+00, 2e+01] +Presolve removed 0 rows and 220 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.03 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfc05e2d4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [3e+00, 2e+01] +Presolve removed 0 rows and 41 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4fb54c92 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 5 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6382d74f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4976652b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3281638b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.03 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa9a52347 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x94c21369 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x55fc7867 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0e2abe72 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 680 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.03 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0a736cf6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.02 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1e221d17 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.03 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1f70c5ff +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.03 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3efc5fc2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 25 rows and 1626 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.02 seconds (0.04 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x216bca7b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 4 rows and 1630 columns +Presolve time: 0.01s + +Explored 0 nodes (0 simplex iterations) in 0.01 seconds (0.03 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeb799005 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 220 columns +Presolve time: 0.02s + +Explored 0 nodes (0 simplex iterations) in 0.02 seconds (0.05 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x22c2f5bf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 24 rows and 1631 columns +Presolve time: 0.02s + +Explored 0 nodes (0 simplex iterations) in 0.02 seconds (0.06 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xce13e6fb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 686 columns +Presolve time: 0.03s + +Explored 0 nodes (0 simplex iterations) in 0.03 seconds (0.08 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5bb7b10a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 5 columns +Presolve time: 0.03s + +Explored 0 nodes (0 simplex iterations) in 0.03 seconds (0.10 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2eef4fb5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve removed 0 rows and 1 columns +Presolve time: 0.03s +Presolved: 126 rows, 1644 columns, 41728 nonzeros +Variable types: 0 continuous, 1644 integer (217 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x646c78ad +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (5 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.05 seconds (0.13 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd9f50209 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (40 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x92e08699 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (5 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.05 seconds (0.13 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x44f9df99 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (1 binary) + +Root relaxation: infeasible, 108 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (108 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3e94cd1f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 117 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (117 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8a58e80c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xec6d4423 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.06 seconds (0.13 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xadca014c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 106 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (106 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2d6431d1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 106 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (106 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa161e6b7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 114 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (114 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7a0f2f95 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1eb201fd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb986b3d1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x08495eeb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4b8d58dc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa9e3be40 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8596b53f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x560507db +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 89 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (89 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd94e4134 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 89 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (89 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x90f243ca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc115c901 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x085505ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 77 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (77 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd72cdf92 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 71 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (71 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x860aede4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x132f3b9d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 66 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (66 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc4632332 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x39209a09 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x729a0831 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 75 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (75 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x880dfb8f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc05e5056 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x097fcbab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 49 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (49 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2b78a5d9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc786f3ca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x71c398c8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x696e5253 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x962c8eec +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x64778c12 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x74394b84 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa22b79be +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x88176443 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe7e55232 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3c945d71 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 17 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (17 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2cffbb36 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 11 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (11 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x840e63a9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 13 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (13 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2e324940 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 13 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (13 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x231ccb9f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 12 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (12 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x70319eff +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc27607e1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 15 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (15 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x263e10ad +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 13 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (13 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5f98b7f4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 18 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (18 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2509f898 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 16 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (16 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2869f5ce +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 16 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (16 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbcdeedef +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 20 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (20 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbd743097 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7b7c3372 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8d0631d0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6b7593d6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd476924a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x43357610 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 21 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (21 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x78a67311 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x45aa08de +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x52e5c2b0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x71497843 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x807f3c7c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 22 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (22 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x39fa4c44 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xec4f8951 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x37ef81bd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4acdeb0d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc11a3f5c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 28 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (28 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x54e89f31 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x646ab100 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb9cece00 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x05fd656a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+01] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbfc9525b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 26 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (26 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe0dc6a48 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0526f691 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb6a10275 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcd0fb691 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 20 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (20 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x59a94ef0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbc49810f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe03bb433 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6498da04 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x88310b9a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 23 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (23 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xac3037b9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 30 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (30 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5f6a8502 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x181c60a2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x52cbcdf4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 19 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (19 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x41542408 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc6057873 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 33 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (33 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x408386cd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa507b301 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x59e51d6b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4e6b0bab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 27 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (27 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6cd6e32b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4db3ca9b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbe155e9c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe33a3828 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfdfb462a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7c81f329 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 25 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (25 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4753a665 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 24 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (24 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf9c5742c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 44 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (44 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9f5a6adc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x33d0aa5d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0ce2c859 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 29 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (29 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7c005022 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x18e75b99 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb6bf6a27 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4c929895 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd79e8612 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x57924239 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 31 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (31 simplex iterations) in 0.04 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd1a7edce +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3d1fd315 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcd763953 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x38120305 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbd71f61f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x96e76839 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe9ec00a8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd3cf1f64 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc5fb8b65 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x04d9837a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 42 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (42 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x391af131 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb0548ff5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 49 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (49 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbec6255e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xea125c34 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc892f3a1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x665bc37d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3591dd11 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x877e48a7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 35 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (35 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3f48712c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 39 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (39 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4ba02989 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x28652a4a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xee8b9889 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xee283bc8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1e555622 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 34 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (34 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1dc9ad5c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb99b860d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8b527b23 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2e5a78a2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5aac257e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 32 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (32 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb3eb2b4f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 37 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (37 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x55e2f144 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe74eede5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa736299d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9a2084e7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6b38895b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xad42849b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9fd6f333 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 59 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (59 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbee56758 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf0d52413 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5e19081c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x38b6c3dd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x00178028 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x35c21bac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8668b8a2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7b685795 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7ac26c79 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1c958423 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3e169701 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3a12e6ac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 41 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (41 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4651def0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 36 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (36 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x39e6800f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf6a4c2ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6d3e5f35 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x74886191 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 54 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (54 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4c7b7fcd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 40 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (40 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8e114a22 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6c74afe2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3559e849 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 49 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (49 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc5aafdaf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 38 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (38 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0060318a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 54 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (54 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1282c9ff +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 59 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (59 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcd03c56c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3d0759e9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x02e30ba8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 43 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (43 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x79f1ca8c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 46 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (46 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x08dc8634 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb5c13082 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb27a7d83 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 55 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (55 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcb6cba1a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9807198d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd371e064 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc6eb5e11 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x72119819 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe8281638 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 61 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (61 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd63e75e6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 45 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (45 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5330e0ee +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.06 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1178bf58 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.06 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x532c12f7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3f48bf21 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 47 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (47 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x814a986b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 48 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (48 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x14280e4c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8cdb72ac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9e944e4c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb09b7dc1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x43515c84 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8c4320b9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf8d3c098 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 52 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (52 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3b7ed8e7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc41ac15b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 50 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (50 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe552279f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 68 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (68 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb910bd15 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 63 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (63 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd9733345 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa995866d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 59 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (59 simplex iterations) in 0.06 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8b4585ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.05 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf3e8f98e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe4fefa84 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 65 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (65 simplex iterations) in 0.06 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb1bbf887 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfe76c5d4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 57 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (57 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1c90f193 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6217fa22 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf91f0dab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 80 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (80 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x430825ac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 76 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (76 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc47be3f4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 62 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (62 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xccd3bae1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 69 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (69 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfd54b7c1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.06 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd478b1e7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 51 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (51 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb4afa309 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.06 seconds (0.12 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x319cfd63 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 94 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (94 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb42b6ef7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x816bdd04 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 67 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (67 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5bc86424 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 60 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (60 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb674642f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 88 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (88 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcf5ee11c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdd3cc108 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 88 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (88 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1bdb7f5f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 77 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (77 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9f2cf19a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 87 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (87 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf8561582 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 91 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (91 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x06e3ec02 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xde7d9814 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 89 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (89 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcf2ea7fe +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 79 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (79 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6acfbe7e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 82 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (82 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5ac1c1d5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf1acce3c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 93 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (93 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe6c3e4b5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 58 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (58 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7932dce8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcf76a3ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 53 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (53 simplex iterations) in 0.06 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xed75cced +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 77 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (77 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x50754877 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xabbec7c8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 94 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (94 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbc6c263c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 83 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (83 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x60b99888 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8334c6e2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.05 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x93b940c5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3cd63587 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 95 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (95 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6f6ead32 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 86 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (86 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x47aad48e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1773c79a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 72 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (72 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2fcfdfdc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 90 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (90 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x841ef8bd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 96 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (96 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe1e97da6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 86 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (86 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7aedd1e8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc908f10e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x05035703 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe8c73036 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9d4d5884 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb10d9a21 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 70 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (70 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x209a4bfa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x10ddd544 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 93 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (93 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8d8df6d2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf54ad7fa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe8e2deb5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8aedc7bb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 134 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (134 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6b35a369 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb9396709 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa31e0051 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe9aeb55b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 84 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (84 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x19600ea3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 86 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (86 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeb322e71 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 92 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (92 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe19606a0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xee84c9df +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x83fad9cf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc789ce05 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 97 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (97 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbe0f0ff1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 105 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (105 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa059434d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2be7218c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf5b7f8cd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x275bd1eb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4e5c0029 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 81 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (81 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x151629e1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb54bd338 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x62c8a611 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x82db3322 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x04d9dc64 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 112 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (112 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x375521b2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6c8b6fa4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 117 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (117 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x80f36a97 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 98 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (98 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc9e51c6a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x54f3b456 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 85 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (85 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x19cd83b3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xaab434a2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xabcd9a25 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x32553c97 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 100 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (100 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5ba96be8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 89 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (89 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9e5cc580 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 107 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (107 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa3a1d664 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6c7b267f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (120 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc0fd03dc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 89 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (89 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xed8ed9ba +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x05dcf3f0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdf7fd374 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe04d56fd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x21c3d153 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4ed983b2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.05 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x57607c15 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 127 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (127 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb68a858e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 138 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (138 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x02dc9c36 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1a38853e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 102 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (102 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf3090d81 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x09ec2e00 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (120 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xca58929d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 111 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (111 simplex iterations) in 0.06 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xff60e142 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe5757d0b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 110 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (110 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf2b7ed2d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4b582167 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 149 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (149 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc9a072c3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb82d7d04 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.06 seconds (0.10 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6cd3d79e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 99 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (99 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb112ca26 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 108 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (108 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x14acb6a3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 125 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (125 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x683feb7f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (120 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbbbe775e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (122 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe79e17af +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 103 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (103 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6aa357a8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 114 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (114 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd260d6c7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x929e51e0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5d6a6e1c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 101 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (101 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe6b49987 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 136 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (136 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2321401e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 3e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 164 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (164 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3306ec24 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 125 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (125 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd5efd38c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd27d1e24 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdb77c2c9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x677ac7e6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6e63fd36 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe88e9f0e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 116 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (116 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9b1c92d4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 140 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (140 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4ac1f8ea +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 109 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (109 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x686cef9b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0ea6a4b9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4d178a13 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 114 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (114 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2e0de839 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc0d6b1e1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x35fefd6b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 149 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (149 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5645c3db +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (133 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x305adb32 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 143 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (143 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6cbd6031 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 123 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (123 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x25971e30 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7f515ec3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 118 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (118 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2958d0f4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (131 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcf5bbd7b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 126 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (126 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6ca3d54f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x446a9115 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 139 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (139 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x52ffb72b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd4cbf751 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 115 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (115 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4475ae3b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 169 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (169 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2c712a0b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x542c33d3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3e40b5d5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 152 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (152 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdcb9cbf0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x68c40981 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9accd936 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 167 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (167 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf9916984 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x11aec924 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (131 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x345003c1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 164 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (164 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe445b0dc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 104 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (104 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2a40b1c5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 134 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (134 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x30a29fd3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x86c0d191 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x98b14494 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7876e9ac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcebcd8d5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 145 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (145 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb43fbf19 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 134 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (134 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe743fa74 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd0e67e2d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb8fdc777 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 144 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (144 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x53f6bacd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa3b59b06 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1cbf047f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x66c2f3bd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 137 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (137 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2ceef54e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3a00a689 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2ae896df +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x632ae580 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 130 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (130 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbf5c9324 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 152 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (152 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2f042f52 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 168 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (168 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5a5c9388 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 179 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (179 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5c9cb134 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 150 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (150 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0ff87c68 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x743695ed +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb81b2e63 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 132 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (132 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x53e3d864 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 126 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (126 simplex iterations) in 0.04 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x982eda64 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xabec74fe +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 146 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (146 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x32cd2bfe +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x40ee988d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 169 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (169 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc4d3e334 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7eb50907 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x55ddbe9c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbbcd518f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 141 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (141 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd94529a8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa9d909ba +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (119 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x25aa508f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x309f7162 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x12a54ab7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 162 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (162 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x957b2e4b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xed03330d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2c5c7b3e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0553ce63 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 184 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (184 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x43e4b00e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4da6a216 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf7eee85b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x46022f52 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 147 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (147 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x031b29b6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x25d19ab9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 159 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (159 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc23edc65 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 155 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (155 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6d0100be +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 193 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (193 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9aa6bccf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x131c7fae +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x21499a0d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe325c200 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 148 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (148 simplex iterations) in 0.04 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe3807234 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2bef4e06 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 151 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (151 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x918682e9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 160 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (160 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2e2177ba +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb5f7e351 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 241 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (241 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x25409318 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x130cd6c7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 175 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (175 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0f9932be +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf7e9aa19 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 4e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa340ee6c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x80143390 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x755ec4b4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc9de5714 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf54eee34 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 158 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (158 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x80d213aa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 152 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (152 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xced1be10 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 186 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (186 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x821a058c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 169 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (169 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xca48ff3c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8f1a83d8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 197 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (197 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x41ca058a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x50596c4c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0673fffe +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 220 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (220 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb3896366 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd6e56c31 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7f0623bf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x29053f0a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 167 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (167 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9ac61bc0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 181 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (181 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa47306bc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 154 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (154 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6ed03c6d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 224 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (224 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe37d9fa7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 167 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (167 simplex iterations) in 0.04 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x45e429bf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 183 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (183 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1b0f000b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbb1f4d49 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 153 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (153 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x11956f1b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 165 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (165 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf634de72 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 146 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (146 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x21946832 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x35c851e5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 171 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (171 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xae871d6b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 251 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (251 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc4b10ca2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 223 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (223 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9d32817b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 208 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (208 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe19cf739 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x452ec58b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 165 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (165 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4feed250 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 163 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (163 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6a7b78e5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 195 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (195 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x14803b61 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 121 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (121 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x63a24cef +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (176 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa097be68 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 157 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (157 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5be1a1af +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 174 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (174 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcbd11dbe +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1d6598b7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 170 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (170 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe5a69fc5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 190 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (190 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xffd43104 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x47d73942 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (199 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8beb7877 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 228 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (228 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeae8b42f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 178 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (178 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdfc1e188 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 220 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (220 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6f0b87c0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x13e128f4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xed73a7df +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 242 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (242 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6c698e90 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 232 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (232 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xab24ba9b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 193 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (193 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x623af7e5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 201 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (201 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2b4f5dd1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 179 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (179 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe2fad4d2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbfee5a6d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 185 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (185 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x47ce40c2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 248 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (248 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x212dc877 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x77227fa2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 205 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (205 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd3c47482 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 220 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (220 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7556b3b4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 213 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (213 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x62ec2a0f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x639f8d9f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4e1225d7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 217 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (217 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa9949b7e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 243 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (243 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7374ad36 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 247 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (247 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x862891e4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x02bb4f91 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 255 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (255 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4a772b3f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb54616a6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 194 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (194 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb3aed370 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 219 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (219 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x65f6c68b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 128 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (128 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8cf0ddaa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x739a2c1c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 189 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (189 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb3ef173f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 249 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (249 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x58352350 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 281 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (281 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x191d5dc9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 212 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (212 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdf2952a6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 160 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (160 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb6a0b8a6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9954b355 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 219 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (219 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xba6ef99d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 261 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (261 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb343aa72 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe9665763 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x14892d2c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 188 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (188 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xad283c97 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 152 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (152 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9f04b739 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 181 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (181 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x08976c33 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7f0c20b0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 250 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (250 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe19f0cf4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 210 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (210 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x40d533b1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 234 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (234 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2887e3b1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 253 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (253 simplex iterations) in 0.08 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xed331413 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 216 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (216 simplex iterations) in 0.08 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8051a5b7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xce4d840e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 240 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (240 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x28835ab0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 222 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (222 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4379b658 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa8ff6cda +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf595ca60 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 258 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (258 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xba3f37a5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 5e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (203 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf5de3a7c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 230 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (230 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x79d75633 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 204 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (204 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x121feceb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 259 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (259 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xacc55ad6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 254 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (254 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x22b06636 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 217 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (217 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb240a238 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 230 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (230 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x26192f14 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 248 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (248 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x09b8273f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 221 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (221 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x41c2005b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x716df77e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 263 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (263 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x092fc3fa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 267 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (267 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1528fb22 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x66bab43e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 230 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (230 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb33d91ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 214 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (214 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x563376e0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 202 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (202 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x934e1708 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 242 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (242 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb2fa1211 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 216 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (216 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1c559e9c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 234 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (234 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb9f277b5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 249 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (249 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb546e42d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 237 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (237 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5d8f7c4e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb240ff4a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 235 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (235 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0f4f1d20 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0c54db2a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 239 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (239 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x81f0b80c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 272 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (272 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2949e962 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 265 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (265 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x67130233 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 218 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (218 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9c93ac9b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 273 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (273 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xce1a7733 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 239 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (239 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2b3e62a3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 220 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (220 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2f344826 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 297 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (297 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xff53965b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 245 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (245 simplex iterations) in 0.09 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x01e51b55 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 232 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (232 simplex iterations) in 0.09 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x76df815f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 319 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (319 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5f4982bb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 275 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (275 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x878954c7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 233 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (233 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa9a8e9b9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 280 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (280 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x601e9136 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 228 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (228 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1fa83d54 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 237 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (237 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x008a361e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 310 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (310 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2f53bf09 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 211 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (211 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1c384538 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 266 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (266 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x83755fa2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 220 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (220 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x37a60579 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 263 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (263 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x732338f7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 255 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (255 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4726f24d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 267 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (267 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcfd2a983 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 249 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (249 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbec499bc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 301 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (301 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x26d55ffe +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 206 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (206 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x65da5b88 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 253 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (253 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf2039f52 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2e736b08 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 261 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (261 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcacfd33f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 298 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (298 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x00c75a2d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 340 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (340 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb3c01a8d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 266 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (266 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x722fbc32 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 310 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (310 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa5d55877 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 275 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (275 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdb2943e0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 198 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (198 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe1978cf8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4dc8080a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 236 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (236 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x17870f78 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 300 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (300 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbe820b8c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 286 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (286 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x553fc036 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 229 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (229 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xad2ecb75 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 239 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (239 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa37712e1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 306 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (306 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6aba1a92 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 264 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (264 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc7c3ccf2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 304 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (304 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4ad65567 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 335 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (335 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1f27c23f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 217 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (217 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xce69afcc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 240 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (240 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5d87b68b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 225 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (225 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6b9fc8f1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 306 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (306 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x760fa1a0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 296 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (296 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb626fda7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 250 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (250 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x281bb60f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 306 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (306 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x04e660e3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 355 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (355 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4e5318f7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 226 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (226 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf469cb51 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 245 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (245 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2eace82a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 293 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (293 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x11d5f118 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 266 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (266 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xadabee9a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 318 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (318 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8175c8c2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 283 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (283 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x935866c1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 293 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (293 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9d134b82 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 287 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (287 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x581cc6b7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 280 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (280 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xab3131a4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 231 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (231 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd32b4111 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 365 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (365 simplex iterations) in 0.08 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5a500c67 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 262 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (262 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfb8446dd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 362 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (362 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x643407d6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 272 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (272 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x118a6d2c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 240 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (240 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6c235460 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 297 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (297 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x16bb210c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 278 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (278 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x275e73ca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 279 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (279 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x88000af9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 231 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (231 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfbd0add9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 261 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (261 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9fa80947 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 245 iterations, 0.01 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (245 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcb2d7f5b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 307 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (307 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x59314ee0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 239 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (239 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x80e2acfb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 249 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (249 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xed8ca4e0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 6e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 274 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (274 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8d32f952 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 286 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (286 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe09e3c34 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 248 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (248 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x91c1260d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 307 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (307 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf3c95cc3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 292 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (292 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd90a6fe0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 234 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (234 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x57e9057d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 288 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (288 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x566454a3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 245 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (245 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x128a2382 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 252 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (252 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x86295539 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 241 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (241 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7e471bfa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 279 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (279 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc00fbd3d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 262 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (262 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xabef4837 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 251 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (251 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2a13093a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 268 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (268 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x552e28f9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 354 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (354 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xee144e78 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 238 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (238 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1a375579 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbe892ccc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 327 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (327 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x012b6bf8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 322 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (322 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf9db4d6a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 283 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (283 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe9126671 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 313 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (313 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfc2689ee +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 260 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (260 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdd5b8176 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 310 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (310 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x079f3364 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 255 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (255 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3ac7d3e7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 260 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (260 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xac609b88 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 259 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (259 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbcfe6721 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 271 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (271 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x85c9c63a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 321 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (321 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf1436ec2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 227 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (227 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc7064d04 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 299 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (299 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x19dd96da +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 281 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (281 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3bc1915a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 257 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (257 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9c8bd9b0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 334 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (334 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6d1ed6ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 313 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (313 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe0cfd961 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 319 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (319 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5bd58831 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 289 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (289 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xebdab7f6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 344 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (344 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x02816ec9 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 283 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (283 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x70192bac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 324 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (324 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1f577185 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 296 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (296 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xda750791 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 331 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (331 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5a3f3f01 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 305 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (305 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0ff59470 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 362 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (362 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcd1709c0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 216 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (216 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xab63827d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 308 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (308 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6af675ec +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 344 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (344 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x32164cac +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 300 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (300 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7cda2f76 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 347 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (347 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd264628f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 281 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (281 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x907ae65f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 272 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (272 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0576293a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 306 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (306 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xde03f714 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 302 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (302 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9dfff539 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 259 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (259 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x048fd918 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 350 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (350 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf9310b4e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 323 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (323 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3be3bc73 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 286 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (286 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1b72d1fc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 361 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (361 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2f230464 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 266 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (266 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7873a9fb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 305 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (305 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x49b6b5f4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 337 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (337 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe46466ae +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 323 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (323 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xad45af55 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 325 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (325 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8e5fa60e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 304 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (304 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1445cb62 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 289 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (289 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x04317e71 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 359 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (359 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3552b83b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 380 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (380 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5e5d7e3b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 291 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (291 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7d107015 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 358 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (358 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd9f93ef4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 273 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (273 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc2b98432 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 355 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (355 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xee0929b0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 341 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (341 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xce847b8a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 290 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (290 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x68820709 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 350 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (350 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb88f86ee +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 369 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (369 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x283d05d5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 296 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (296 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x54a16aca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 275 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (275 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6b6898bc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 367 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (367 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x73e6402a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 302 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (302 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5b8bbdd8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 335 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (335 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa095a7ce +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 331 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (331 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x71b10024 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 347 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (347 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeb570b55 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 328 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (328 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdc59effc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 286 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (286 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe57c1bba +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 269 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (269 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd99febda +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 274 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (274 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7ec4b515 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 379 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (379 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf27f7e12 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 302 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (302 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2ce550fc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 362 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (362 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x84bc789c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 369 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (369 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa07781c5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 327 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (327 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x87efdbc7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 313 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (313 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xccb6f0e6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 322 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (322 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd5a0172c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 309 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (309 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xda9f7063 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 224 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (224 simplex iterations) in 0.07 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xaa2727c0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 322 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (322 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x544c35f2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 305 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (305 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf923491a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 306 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (306 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2877bd67 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 280 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (280 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8416a122 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 358 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (358 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x304b9035 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 7e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 328 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (328 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5b52c9e5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 329 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (329 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x544f2d91 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 337 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (337 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa7bcdc3a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 272 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (272 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4daa6ef1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 296 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (296 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8c420067 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 356 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (356 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6dd38b73 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 240 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (240 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xca0576da +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 314 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (314 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x938090a3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 311 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (311 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf95b368f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 325 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (325 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x27f787c6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 354 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (354 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfce93b92 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 336 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (336 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x713976af +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 289 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (289 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf96aa1fd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 280 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (280 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf615749b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 360 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (360 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5543a1f7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 340 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (340 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x31ce17c7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 476 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (476 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe6d958d5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 375 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (375 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6c7a4136 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 394 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (394 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6e33c48e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 331 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (331 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb2e9ce36 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 319 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (319 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x16be3f81 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 391 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (391 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x69b52f88 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 336 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (336 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x51715e39 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 331 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (331 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0f57925a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 317 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (317 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x610af56e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 299 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (299 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc79c7112 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 333 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (333 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x58e4f391 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 274 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (274 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xce12cacf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 399 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (399 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xca9b7f49 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 340 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (340 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x99a4daf1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 326 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (326 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd765320f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 362 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (362 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4e76a5c5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 363 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (363 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x21d7044f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 394 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (394 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdef68520 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 352 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (352 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x58c42075 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 326 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (326 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1121488d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 356 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (356 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4b3e2e7d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 293 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (293 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4192ac53 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 339 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (339 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x047d530e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 352 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (352 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x467c09ee +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 266 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (266 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc827ed55 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 285 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (285 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x17ec9e15 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 365 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (365 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3df880c2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 334 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (334 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0a9e6a8a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 380 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (380 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb071e777 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 315 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (315 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfe263dfb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 349 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (349 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb8ca2062 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 350 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (350 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5cec4fe1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 392 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (392 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6fa58792 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 302 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (302 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xac680ec8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 302 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (302 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbd4e7a42 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.04s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 353 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (353 simplex iterations) in 0.07 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcfb54f20 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 367 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (367 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6fefd0c8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 284 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (284 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9c711b12 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 358 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (358 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x1b193696 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 360 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (360 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6d102d3f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 397 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (397 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x73d979ec +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 285 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (285 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf7431758 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 341 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (341 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x82a10e3f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 410 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (410 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb41212e3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 289 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (289 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9b713677 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 363 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (363 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x18814b4b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 357 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (357 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe087b3c2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 325 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (325 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3d1493ef +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 348 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (348 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x474a5bd7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 284 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (284 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb446083e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 332 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (332 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x061071ca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 335 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (335 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdf7551d6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 402 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (402 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4570082f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 362 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (362 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2afe620a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 348 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (348 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeddfe114 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 343 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (343 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xefdabbab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 513 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (513 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfa68f6bc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 397 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (397 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x91e1e27d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 354 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (354 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd7f13711 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 370 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (370 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf1836858 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 375 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (375 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa2abf724 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 328 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (328 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x67724e0f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 315 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (315 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x75acd578 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 295 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (295 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x80337b5b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 341 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (341 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf724a582 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 401 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (401 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x88a0733d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 333 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (333 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2447d9c1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 337 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (337 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xaba77aea +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 345 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (345 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9f62f400 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 336 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (336 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7ccffcbb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 357 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (357 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcf871162 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 348 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (348 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x221343c6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 300 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (300 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbaca6c26 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 414 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (414 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3f4f2c96 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 278 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (278 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb5396c62 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 331 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (331 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe32ae11b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 334 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (334 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdf06aeaf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 363 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (363 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe8043268 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 318 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (318 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4f4e75dc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 399 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (399 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xfb1468c5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 446 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (446 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0511af65 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 270 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (270 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3c5dbb13 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 282 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (282 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb5340043 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 364 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (364 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x72868efa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 401 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (401 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe6564658 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 8e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 352 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (352 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4d07a6b0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 429 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (429 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdfb26f8d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 330 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (330 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9b84e675 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 400 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (400 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7128f439 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 326 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (326 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb0d4cae8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 354 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (354 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7e60193e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 382 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (382 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x416832b0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 327 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (327 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc9a1f9dc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 361 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (361 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xccefe614 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 340 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (340 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa604a2d2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 342 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (342 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9e11761e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 425 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (425 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5ac77bdf +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 336 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (336 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd83f3480 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 349 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (349 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc544acbd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 348 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (348 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xad00ecfd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 346 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (346 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa45a85e7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 318 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (318 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8796ac1c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 516 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (516 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2b515019 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 366 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (366 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7723ac99 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 422 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (422 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd03078ba +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 471 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (471 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe404a6ef +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 354 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (354 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8adbeec6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 373 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (373 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x23541b9a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 369 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (369 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x683378d2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 308 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (308 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x50f595e6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 451 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (451 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd396715e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 352 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (352 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb2e0f04c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 337 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (337 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x73830d30 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 409 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (409 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf1077c26 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 379 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (379 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbe936e4f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 388 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (388 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5b18a096 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 377 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (377 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7a6d04d5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 361 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (361 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2f6a79b5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 351 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (351 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x96c79d22 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 317 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (317 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x31e1f237 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 390 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (390 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8a14979c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 296 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (296 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa774f829 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 398 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (398 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf88dfd9f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 383 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (383 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3c5d27e5 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 333 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (333 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9fe67c8a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 381 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (381 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x7a052921 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 407 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (407 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9e8ca05c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 324 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (324 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x9e23e25f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 382 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (382 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x82998e4d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 361 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (361 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3b367bab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 516 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (516 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2263523e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 402 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (402 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3ec4c83b +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 363 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (363 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x56036304 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 336 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (336 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0423b2dd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 401 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (401 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeafb919a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 412 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (412 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x315e6808 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 350 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (350 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x052a50a2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 389 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (389 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x826cff88 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 366 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (366 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc8baa1d4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 306 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (306 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xeb3ed6ca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 430 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (430 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x23e20de3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 448 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (448 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd5ef6dfa +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 439 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (439 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd7ffadf6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 413 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (413 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x0f42b3b4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 398 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (398 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x8af2afca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 335 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (335 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3f663aeb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 473 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (473 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe24f84f7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 421 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (421 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa001f802 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 394 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (394 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdf942bca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 368 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (368 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xaab1632e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 432 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (432 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xdc9e9ba7 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 379 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (379 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2e8b098c +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 379 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (379 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa6a24792 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 517 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (517 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe689bcb6 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 412 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (412 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xe72ebe76 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 422 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (422 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x19b8d85f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 371 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (371 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xda54707a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 323 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (323 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x800647ca +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 375 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (375 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5884f9c0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 343 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (343 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x2ec30b8e +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 345 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (345 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x001a210a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 355 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (355 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xad5262b4 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 380 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (380 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa08abd8a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 279 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (279 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x90e55eef +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 347 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (347 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x5f41d9e2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 333 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (333 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x181ae4ba +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 349 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (349 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3de749e1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 323 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (323 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x464f4880 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 363 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (363 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4f8e01e0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 350 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (350 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x10691aa0 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 312 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (312 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x79f73778 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 314 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (314 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa887feea +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 330 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (330 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x12089760 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 420 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (420 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf1ade3ab +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 269 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (269 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x34e4b7ce +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 315 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (315 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xb19848bd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 386 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (386 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x6da615ef +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 333 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (333 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc0599fe3 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 323 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (323 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xae269efb +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 293 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (293 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xde3aa3e8 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 276 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (276 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xd7636f25 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 261 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (261 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbcb5368a +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 363 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (363 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc7128565 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 283 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (283 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf9780289 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 9e+02] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 275 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (275 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x358d3b74 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 323 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (323 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x83011af1 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 293 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (293 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbe4911db +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 284 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (284 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x93ed9899 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 321 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (321 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x4431cb9f +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 240 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (240 simplex iterations) in 0.05 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x3f027a1d +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 332 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (332 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xbf0d5e22 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 355 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (355 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xf87313dd +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 264 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (264 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x42cbe270 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 316 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (316 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xc35ce4e2 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.03s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 257 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (257 simplex iterations) in 0.06 seconds (0.08 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0x21c56778 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 307 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (307 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xa7f9cd00 +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: infeasible, 231 iterations, 0.00 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (231 simplex iterations) in 0.05 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1645 columns and 41815 nonzeros +Model fingerprint: 0xcc4decfc +Variable types: 0 continuous, 1645 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 1e+03] +Presolve time: 0.02s +Presolved: 126 rows, 1645 columns, 41815 nonzeros +Variable types: 0 continuous, 1645 integer (0 binary) + +Root relaxation: objective 0.000000e+00, 259 iterations, 0.01 seconds (0.01 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 0.0000000 0.00000 0.00% - 0s + +Explored 1 nodes (259 simplex iterations) in 0.06 seconds (0.09 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 15:31:16 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Academic license - for non-commercial use only - expires 2026-01-12 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x8bb677cc +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 1 rows and 10 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x589155d2 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 1 rows and 4 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x540e86a0 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 4 rows and 6 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xda0bbd31 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xa57de30c +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 4 rows and 5 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x0c7634a3 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+00] +Presolve removed 5 rows and 9 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x54319b7c +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 6 columns, 18 nonzeros +Variable types: 0 continuous, 6 integer (0 binary) + +Root relaxation: infeasible, 2 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (2 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x4e9a1a7d +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 6 columns, 18 nonzeros +Variable types: 0 continuous, 6 integer (0 binary) +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:17:57 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:18:40 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:18:50 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:20:40 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:21:25 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:21:50 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64, Python) logging started Mon Jan 13 18:22:34 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 +Set parameter LogFile to value "gurobi.log" + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:23:07 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 18:23:10 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:02:36 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:07:18 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:09:37 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:11:20 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:13:47 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:13:56 2025 + +Set parameter Username +Set parameter LicenseID to value 2608888 + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:15:30 2025 + + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:16:49 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x0d245b81 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 1 rows and 10 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x68335e8d +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 1 rows and 4 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xd9181afe +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 4 rows and 6 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x8ba7237d +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xad2e5e80 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 4 rows and 5 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x35ca5d30 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+00] +Presolve removed 5 rows and 9 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xd80dbfae +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 6 columns, 18 nonzeros +Variable types: 0 continuous, 6 integer (0 binary) + +Root relaxation: infeasible, 2 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (2 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xde0a3312 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 6 columns, 18 nonzeros +Variable types: 0 continuous, 6 integer (0 binary) +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:17:17 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xc8b2119b +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 1 rows and 10 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x62016de7 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 1 rows and 4 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xd9181afe +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 4 rows and 6 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x27aab605 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x57342fce +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Presolve removed 4 rows and 5 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x68425020 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 5e+00] +Presolve removed 5 rows and 9 columns +Presolve time: 0.00s + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0xe85cae10 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 6e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 6 columns, 18 nonzeros +Variable types: 0 continuous, 6 integer (0 binary) + +Root relaxation: infeasible, 2 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 infeasible 0 - infeasible - - 0s + +Explored 1 nodes (2 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 0 + +Model is infeasible +Best objective -, best bound -, gap - +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 10 columns and 25 nonzeros +Model fingerprint: 0x07051df9 +Variable types: 0 continuous, 10 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 7e+00] +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 6 columns, 18 nonzeros +Variable types: 0 continuous, 6 integer (0 binary) +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:18:47 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x8f19238c +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [0e+00, 0e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 0.0000000 + +Explored 0 nodes (0 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 1 (of 16 available processors) + +Solution count 1: 0 + +Optimal solution found (tolerance 1.00e-04) +Best objective 0.000000000000e+00, best bound 0.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:19:43 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x01598c0a +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 8.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 7.0000000 + +Root relaxation: cutoff, 2 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 cutoff 0 7.00000 7.00000 0.00% - 0s + +Explored 1 nodes (2 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 7 8 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.000000000000e+00, best bound 7.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:20:06 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0x28de6409 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 137.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 9.000000e+01, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 90.0000000 90.00000 0.00% - 0s + +Explored 1 nodes (120 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 90 137 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.000000000000e+01, best bound 9.000000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:20:27 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 657 columns and 6226 nonzeros +Model fingerprint: 0x3e056f3b +Variable types: 0 continuous, 657 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 1462.0000000 +Presolve time: 0.00s +Presolved: 110 rows, 657 columns, 6226 nonzeros +Variable types: 0 continuous, 657 integer (0 binary) + +Root relaxation: objective 9.063000e+02, 199 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 906.30000 0 11 1462.00000 906.30000 38.0% - 0s +H 0 0 915.0000000 906.30000 0.95% - 0s +H 0 0 907.0000000 906.30000 0.08% - 0s + 0 0 906.30000 0 11 907.00000 906.30000 0.08% - 0s + +Explored 1 nodes (253 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 907 915 1462 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.070000000000e+02, best bound 9.070000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:20:42 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1646 columns and 41841 nonzeros +Model fingerprint: 0xff439f41 +Variable types: 0 continuous, 1646 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 1533.0000000 +Presolve time: 0.02s +Presolved: 126 rows, 1646 columns, 41841 nonzeros +Variable types: 0 continuous, 1646 integer (0 binary) + +Root relaxation: objective 9.615385e+02, 297 iterations, 0.01 seconds (0.03 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 961.53846 0 42 1533.00000 961.53846 37.3% - 0s +H 0 0 962.0000000 961.53846 0.05% - 0s + 0 0 961.53846 0 42 962.00000 961.53846 0.05% - 0s + +Explored 1 nodes (364 simplex iterations) in 0.06 seconds (0.11 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 962 1533 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.620000000000e+02, best bound 9.620000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:21:16 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0xe7f0068f +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 14456.000000 +Presolve time: 0.16s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 9.500000e+03, 2271 iterations, 0.19 seconds (0.36 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 9500.0000000 9500.00000 0.00% - 0s + +Explored 1 nodes (2271 simplex iterations) in 0.39 seconds (0.70 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 9500 14456 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.500000000000e+03, best bound 9.500000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:21:34 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0xc9b1a179 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 148697.00000 +Presolve time: 0.26s +Presolved: 1026 rows, 16662 columns, 423873 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.04s + +Solved with dual simplex + +Root relaxation: objective 9.615385e+04, 1860 iterations, 0.27 seconds (0.52 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 96153.8462 0 50 148697.000 96153.8462 35.3% - 0s +H 0 0 96154.000000 96153.8462 0.00% - 0s + 0 0 96153.8462 0 50 96154.0000 96153.8462 0.00% - 0s + +Explored 1 nodes (2937 simplex iterations) in 0.78 seconds (1.48 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 96154 148697 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.615400000000e+04, best bound 9.615400000000e+04, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:22:35 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x9735f577 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 6e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 145937.00000 +Presolve time: 0.26s +Presolved: 1026 rows, 16662 columns, 423873 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.03s + +Solved with dual simplex + +Root relaxation: objective 9.615385e+04, 2217 iterations, 0.30 seconds (0.61 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 96153.8462 0 49 145937.000 96153.8462 34.1% - 0s +H 0 0 96154.000000 96153.8462 0.00% - 0s + 0 0 96153.8462 0 49 96154.0000 96153.8462 0.00% - 0s + +Explored 1 nodes (3875 simplex iterations) in 0.82 seconds (1.52 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 96154 145937 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.615400000000e+04, best bound 9.615400000000e+04, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:23:19 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xa72964d9 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 4e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 121.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 9.000000e+01, 127 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 90.0000000 90.00000 0.00% - 0s + +Explored 1 nodes (127 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 90 121 + +Optimal solution found (tolerance 1.00e-04) +Best objective 9.000000000000e+01, best bound 9.000000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:25:18 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 0, 1]:0" has a space +Warning: constraint name "[0, 0, 1]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xca6bf5b3 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 13.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 12.0000000 + +Root relaxation: objective 6.666667e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 6.66667 0 2 12.00000 6.66667 44.4% - 0s +H 0 0 7.0000000 6.66667 4.76% - 0s + 0 0 6.66667 0 2 7.00000 6.66667 4.76% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 7 12 13 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.000000000000e+00, best bound 7.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:30:14 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 0, 0]:0" has a space +Warning: constraint name "[0, 0, 0]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x0482e5e6 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 10.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 9.0000000 + +Root relaxation: objective 6.666667e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 6.66667 0 2 9.00000 6.66667 25.9% - 0s +H 0 0 7.0000000 6.66667 4.76% - 0s + 0 0 6.66667 0 2 7.00000 6.66667 4.76% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 7 9 10 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.000000000000e+00, best bound 7.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:31:29 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 1]:0" has a space +Warning: constraint name "[0, 1, 1]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xb7254201 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 2e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 8.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 7.0000000 + +Root relaxation: cutoff, 2 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 cutoff 0 7.00000 7.00000 0.00% - 0s + +Explored 1 nodes (2 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 7 8 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.000000000000e+00, best bound 7.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:37:25 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2]:0" has a space +Warning: constraint name "[0, 1, 2]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x373103e9 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 7.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 6.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 6 7 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:37:34 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 0, 2, 3, 4, 5, 2, 2, 4]:0" has a space +Warning: constraint name "[0, 1, 0, 2, 3, 4, 5, 2, 2, 4]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xf6521cfb +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 97.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 119 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 11 97.00000 72.00000 25.8% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 9 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (167 simplex iterations) in 0.02 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 97 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:37:39 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 1, 2, 3, 2, 3, 4, 0, 5]:0" has a space +Warning: constraint name "[0, 1, 1, 2, 3, 2, 3, 4, 0, 5]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 657 columns and 6226 nonzeros +Model fingerprint: 0x70aa3f08 +Variable types: 0 continuous, 657 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 896.0000000 +Presolve time: 0.00s +Presolved: 110 rows, 657 columns, 6226 nonzeros +Variable types: 0 continuous, 657 integer (0 binary) + +Root relaxation: objective 7.309000e+02, 176 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 730.90000 0 18 896.00000 730.90000 18.4% - 0s +H 0 0 731.0000000 730.90000 0.01% - 0s + 0 0 730.90000 0 18 731.00000 730.90000 0.01% - 0s + +Explored 1 nodes (195 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 731 896 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.310000000000e+02, best bound 7.310000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:37:57 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 6, 13, 14, 10, 14, 7, 15, 16, 10, 17, 18, 7, 11]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 6, 13, 14, 10, 14, 7, 15, 16, 10, 17, 18, 7, 11]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1646 columns and 41841 nonzeros +Model fingerprint: 0x95202bcc +Variable types: 0 continuous, 1646 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 987.0000000 +Presolve time: 0.02s +Presolved: 126 rows, 1646 columns, 41347 nonzeros +Variable types: 0 continuous, 1646 integer (0 binary) + +Root relaxation: objective 8.708920e+02, 362 iterations, 0.01 seconds (0.03 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 870.89202 0 49 987.00000 870.89202 11.8% - 0s +H 0 0 872.0000000 870.89202 0.13% - 0s + 0 0 871.00000 0 52 872.00000 871.00000 0.11% - 0s +H 0 0 871.0000000 871.00000 0.00% - 0s + 0 0 871.00000 0 52 871.00000 871.00000 0.00% - 0s + +Explored 1 nodes (508 simplex iterations) in 0.23 seconds (0.24 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 871 872 987 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.710000000000e+02, best bound 8.710000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:38:08 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 0, 2, 1, 3, 4, 5, 6, 7, 8, 9, 10, 0, 8, 9, 11, 4, 12, 13]:0" has a space +Warning: constraint name "[0, 1, 0, 2, 1, 3, 4, 5, 6, 7, 8, 9, 10, 0, 8, 9, 11, 4, 12, 13]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0x2a930cfe +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9386.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 1318 iterations, 0.18 seconds (0.37 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 36 9386.00000 8379.55000 10.7% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 36 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1723 simplex iterations) in 0.42 seconds (0.80 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9386 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:38:15 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 5, 6, 1, 7, 8, 9, 5, 6, 10, 7, 4, 11, 12, 3, 7, 3, 2, 3, 2, 12, 7]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 5, 6, 1, 7, 8, 9, 5, 6, 10, 7, 4, 11, 12, 3, 7, 3, 2, 3, 2, 12, 7]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x15a89dd5 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95496.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.05s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 520 iterations, 0.25 seconds (0.53 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 51 95496.0000 86834.1154 9.07% - 0s +H 0 0 86836.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (685 simplex iterations) in 0.62 seconds (1.26 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86836 95496 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683600000000e+04, best bound 8.683500000000e+04, gap 0.0012% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:38:33 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 1, 4, 5, 6, 7, 4, 8, 6, 9, 10, 10, 11, 6, 10, 12]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 1, 4, 5, 6, 7, 4, 8, 6, 9, 10, 10, 11, 6, 10, 12]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0xa2c9ff90 +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9438.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 1284 iterations, 0.18 seconds (0.36 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 39 9438.00000 8379.55000 11.2% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 39 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1528 simplex iterations) in 0.42 seconds (0.78 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9438 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:38:41 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 9, 10, 5, 11, 12, 10, 10, 13, 14, 0, 15, 16, 17, 7, 14, 18]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 9, 10, 5, 11, 12, 10, 10, 13, 14, 0, 15, 16, 17, 7, 14, 18]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x102b1acb +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95168.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.04s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 641 iterations, 0.21 seconds (0.44 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 51 95168.0000 86834.1154 8.76% - 0s +H 0 0 86835.000000 86834.1154 0.00% - 0s + 0 0 86834.1154 0 51 86835.0000 86834.1154 0.00% - 0s + +Explored 1 nodes (825 simplex iterations) in 0.58 seconds (1.17 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86835 95168 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683500000000e+04, best bound 8.683500000000e+04, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:40:26 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 9, 4, 9, 10, 11, 2, 6, 12, 7, 0]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 9, 4, 9, 10, 11, 2, 6, 12, 7, 0]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0x708b7e12 +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9364.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 920 iterations, 0.14 seconds (0.29 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 37 9364.00000 8379.55000 10.5% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 37 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1101 simplex iterations) in 0.39 seconds (0.71 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9364 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:40:35 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 5, 6, 1, 5, 7, 8, 9, 10, 11, 7, 3, 12, 5, 2, 13, 14, 15, 3, 12, 16, 8]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 5, 6, 1, 5, 7, 8, 9, 10, 11, 7, 3, 12, 5, 2, 13, 14, 15, 3, 12, 16, 8]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x08c1fb80 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95586.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.04s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 408 iterations, 0.20 seconds (0.42 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 49 95586.0000 86834.1154 9.16% - 0s +H 0 0 86837.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (692 simplex iterations) in 0.58 seconds (1.16 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86837 95586 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683700000000e+04, best bound 8.683500000000e+04, gap 0.0023% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:40:49 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Warning: variable name "[0, 1, 2, 3, 4, 5, 6, 3, 7, 8, 6, 8, 9, 10, 11, 12, 11, 13, 14, 6, 15, 16, 15, 2, 17, 18]:0" has a space +Warning: constraint name "[0, 1, 2, 3, 4, 5, 6, 3, 7, 8, 6, 8, 9, 10, 11, 12, 11, 13, 14, 6, 15, 16, 15, 2, 17, 18]" has a space +Warning: to let Gurobi read it back, use rlp format +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x4150cbe1 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95262.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.04s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 442 iterations, 0.22 seconds (0.46 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 50 95262.0000 86834.1154 8.85% - 0s +H 0 0 86835.000000 86834.1154 0.00% - 0s + 0 0 86834.1154 0 50 86835.0000 86834.1154 0.00% - 0s + +Explored 1 nodes (603 simplex iterations) in 0.60 seconds (1.19 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86835 95262 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683500000000e+04, best bound 8.683500000000e+04, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:41:12 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x752595f0 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95496.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.05s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 553 iterations, 0.25 seconds (0.53 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 51 95496.0000 86834.1154 9.07% - 0s +H 0 0 86837.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (735 simplex iterations) in 0.63 seconds (1.26 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86837 95496 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683700000000e+04, best bound 8.683500000000e+04, gap 0.0023% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:41:45 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0x6315d5c0 +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9309.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 901 iterations, 0.15 seconds (0.31 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 37 9309.00000 8379.55000 10.0% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 37 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1336 simplex iterations) in 0.39 seconds (0.73 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9309 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:41:49 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x917314df +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95165.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.03s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 523 iterations, 0.19 seconds (0.41 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 50 95165.0000 86834.1154 8.75% - 0s +H 0 0 86836.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (679 simplex iterations) in 0.57 seconds (1.14 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86836 95165 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683600000000e+04, best bound 8.683500000000e+04, gap 0.0012% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:54:56 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0xea4abf8a +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95665.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.04s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 571 iterations, 0.20 seconds (0.44 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 51 95665.0000 86834.1154 9.23% - 0s +H 0 0 86837.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (751 simplex iterations) in 0.58 seconds (1.18 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86837 95665 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683700000000e+04, best bound 8.683500000000e+04, gap 0.0023% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:55:01 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0x0cde574c +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9359.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 986 iterations, 0.17 seconds (0.35 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 38 9359.00000 8379.55000 10.5% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 38 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1459 simplex iterations) in 0.41 seconds (0.78 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9359 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:55:34 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0x6875e3e6 +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9427.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.03s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 1264 iterations, 0.18 seconds (0.37 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 38 9427.00000 8379.55000 11.1% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 38 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1570 simplex iterations) in 0.42 seconds (0.79 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9427 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:55:39 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xfefe7f05 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 7.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 6.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 6 7 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 19:58:12 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xcdca5038 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 10.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 9.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 9 10 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:01:00 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x11664a1c +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 5.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 4 5 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:10:18 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x99341bf7 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 10.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 9.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 9 10 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:10:41 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x8153e5cd +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 10.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 9.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 9 10 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:13:29 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xa8086207 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 5.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 4 5 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:14:14 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x864f803d +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 8.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 7.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 7 8 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:15:47 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0x864f803d +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 8.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 7.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 7 8 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:16:34 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xb233fb7b +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 5.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 4 5 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:19:37 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 8 rows, 11 columns and 28 nonzeros +Model fingerprint: 0xbc9c0254 +Variable types: 0 continuous, 11 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 3e+00] +Found heuristic solution: objective 7.0000000 +Presolve removed 4 rows and 4 columns +Presolve time: 0.00s +Presolved: 4 rows, 7 columns, 21 nonzeros +Variable types: 0 continuous, 7 integer (0 binary) +Found heuristic solution: objective 6.0000000 + +Root relaxation: objective 4.000000e+00, 3 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 4.0000000 4.00000 0.00% - 0s + +Explored 1 nodes (3 simplex iterations) in 0.00 seconds (0.00 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 4 6 7 + +Optimal solution found (tolerance 1.00e-04) +Best objective 4.000000000000e+00, best bound 4.000000000000e+00, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:19:48 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xe38408b1 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 93.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 142 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 13 93.00000 72.00000 22.6% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s +* 0 0 0 72.0000000 72.00000 0.00% - 0s + +Cutting planes: + Gomory: 3 + Zero half: 4 + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 93 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:20:42 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 657 columns and 6226 nonzeros +Model fingerprint: 0xc20be12f +Variable types: 0 continuous, 657 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 937.0000000 +Presolve time: 0.00s +Presolved: 110 rows, 657 columns, 6226 nonzeros +Variable types: 0 continuous, 657 integer (0 binary) + +Root relaxation: objective 7.309000e+02, 177 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 730.90000 0 18 937.00000 730.90000 22.0% - 0s +H 0 0 731.0000000 730.90000 0.01% - 0s + 0 0 730.90000 0 18 731.00000 730.90000 0.01% - 0s + +Explored 1 nodes (185 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 731 937 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.310000000000e+02, best bound 7.310000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:22:08 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 657 columns and 6226 nonzeros +Model fingerprint: 0xa07c8447 +Variable types: 0 continuous, 657 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 889.0000000 +Presolve time: 0.00s +Presolved: 110 rows, 657 columns, 6226 nonzeros +Variable types: 0 continuous, 657 integer (0 binary) + +Root relaxation: objective 7.309000e+02, 183 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 730.90000 0 19 889.00000 730.90000 17.8% - 0s +H 0 0 733.0000000 730.90000 0.29% - 0s +H 0 0 731.0000000 730.90000 0.01% - 0s + 0 0 730.90000 0 19 731.00000 730.90000 0.01% - 0s + +Explored 1 nodes (187 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 731 733 889 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.310000000000e+02, best bound 7.310000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:22:21 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0x71a2bb22 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 92.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 112 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 10 92.00000 72.00000 21.7% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 10 73.00000 72.00000 1.37% - 0s + 0 0 72.00000 0 14 73.00000 72.00000 1.37% - 0s + 0 0 72.00000 0 9 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + 0 0 72.00000 0 16 72.00000 72.00000 0.00% - 0s + +Cutting planes: + Gomory: 2 + MIR: 2 + Zero half: 3 + +Explored 1 nodes (205 simplex iterations) in 0.03 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 92 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:23:03 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xae230b9a +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 88.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 146 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 8 88.00000 72.00000 18.2% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 19 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (179 simplex iterations) in 0.02 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 88 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:24:36 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0x554a0032 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 96.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 120 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 10 96.00000 72.00000 25.0% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 20 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (146 simplex iterations) in 0.02 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 96 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:24:47 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0x65c3aee3 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 90.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 124 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + +* 0 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (124 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 72 90 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:24:48 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0x68a19028 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 91.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 133 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 10 91.00000 72.00000 20.9% - 0s +H 0 0 74.0000000 72.00000 2.70% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 19 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (160 simplex iterations) in 0.02 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 4: 72 73 74 91 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:24:49 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xec5e0d87 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 91.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 130 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 17 91.00000 72.00000 20.9% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 14 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (154 simplex iterations) in 0.02 seconds (0.02 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 91 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:26:14 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xbb15afd1 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 91.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 15 91.00000 72.00000 20.9% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 19 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (160 simplex iterations) in 0.02 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 91 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:27:58 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0xd0be91e6 +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 92.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 131 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 10 92.00000 72.00000 21.7% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s +* 0 0 0 72.0000000 72.00000 0.00% - 0s + +Cutting planes: + Gomory: 5 + MIR: 1 + Zero half: 5 + +Explored 1 nodes (146 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 92 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:34:08 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 74 rows, 424 columns and 4023 nonzeros +Model fingerprint: 0x3e607d8a +Variable types: 0 continuous, 424 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 4e+00] +Found heuristic solution: objective 89.0000000 +Presolve time: 0.00s +Presolved: 74 rows, 424 columns, 4023 nonzeros +Variable types: 0 continuous, 424 integer (250 binary) + +Root relaxation: objective 7.200000e+01, 122 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 72.00000 0 12 89.00000 72.00000 19.1% - 0s +H 0 0 73.0000000 72.00000 1.37% - 0s + 0 0 72.00000 0 19 73.00000 72.00000 1.37% - 0s +H 0 0 72.0000000 72.00000 0.00% - 0s + +Explored 1 nodes (155 simplex iterations) in 0.02 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 72 73 89 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.200000000000e+01, best bound 7.200000000000e+01, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:34:17 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 110 rows, 657 columns and 6226 nonzeros +Model fingerprint: 0x2ebf71fd +Variable types: 0 continuous, 657 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 910.0000000 +Presolve time: 0.00s +Presolved: 110 rows, 657 columns, 6226 nonzeros +Variable types: 0 continuous, 657 integer (0 binary) + +Root relaxation: objective 7.309000e+02, 203 iterations, 0.00 seconds (0.00 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 730.90000 0 19 910.00000 730.90000 19.7% - 0s +H 0 0 732.0000000 730.90000 0.15% - 0s +H 0 0 731.0000000 730.90000 0.01% - 0s + 0 0 730.90000 0 19 731.00000 730.90000 0.01% - 0s + +Explored 1 nodes (214 simplex iterations) in 0.01 seconds (0.01 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 731 732 910 + +Optimal solution found (tolerance 1.00e-04) +Best objective 7.310000000000e+02, best bound 7.310000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:34:23 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1646 columns and 41841 nonzeros +Model fingerprint: 0x9388c679 +Variable types: 0 continuous, 1646 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 979.0000000 +Presolve time: 0.02s +Presolved: 126 rows, 1646 columns, 41347 nonzeros +Variable types: 0 continuous, 1646 integer (0 binary) + +Root relaxation: objective 8.708920e+02, 415 iterations, 0.01 seconds (0.03 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 870.89202 0 49 979.00000 870.89202 11.0% - 0s +H 0 0 872.0000000 870.89202 0.13% - 0s +H 0 0 871.0000000 871.00000 0.00% - 0s + 0 0 871.00000 0 47 871.00000 871.00000 0.00% - 0s + +Cutting planes: + Gomory: 1 + +Explored 1 nodes (497 simplex iterations) in 0.11 seconds (0.16 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 871 872 979 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.710000000000e+02, best bound 8.710000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:34:33 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0xdf02bc07 +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9386.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.02s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 1034 iterations, 0.16 seconds (0.33 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 39 9386.00000 8379.55000 10.7% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 39 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1356 simplex iterations) in 0.39 seconds (0.75 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9386 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:34:47 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x26bf16f9 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95064.000000 +Presolve time: 0.23s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.03s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 612 iterations, 0.21 seconds (0.46 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 51 95064.0000 86834.1154 8.66% - 0s +H 0 0 86835.000000 86834.1154 0.00% - 0s + 0 0 86834.1154 0 51 86835.0000 86834.1154 0.00% - 0s + +Explored 1 nodes (800 simplex iterations) in 0.58 seconds (1.19 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86835 95064 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683500000000e+04, best bound 8.683500000000e+04, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:35:09 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1020 rows, 12858 columns and 250017 nonzeros +Model fingerprint: 0x85a4f603 +Variable types: 0 continuous, 12858 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [1e+00, 2e+01] +Found heuristic solution: objective 9343.0000000 +Presolve time: 0.14s +Presolved: 1020 rows, 12858 columns, 250017 nonzeros +Variable types: 0 continuous, 12858 integer (13 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.05s + +Solved with dual simplex + +Root relaxation: objective 8.379550e+03, 1211 iterations, 0.23 seconds (0.48 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 8379.55000 0 38 9343.00000 8379.55000 10.3% - 0s +H 0 0 8380.0000000 8379.55000 0.01% - 0s + 0 0 8379.55000 0 38 8380.00000 8379.55000 0.01% - 0s + +Explored 1 nodes (1461 simplex iterations) in 0.48 seconds (0.91 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 8380 9343 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.380000000000e+03, best bound 8.380000000000e+03, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:35:30 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 126 rows, 1646 columns and 41841 nonzeros +Model fingerprint: 0xe36a68f6 +Variable types: 0 continuous, 1646 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [4e+00, 2e+01] +Found heuristic solution: objective 974.0000000 +Presolve time: 0.02s +Presolved: 126 rows, 1646 columns, 41347 nonzeros +Variable types: 0 continuous, 1646 integer (0 binary) + +Root relaxation: objective 8.708920e+02, 491 iterations, 0.02 seconds (0.04 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 870.89202 0 49 974.00000 870.89202 10.6% - 0s +H 0 0 872.0000000 870.89202 0.13% - 0s + 0 0 871.00000 0 48 872.00000 871.00000 0.11% - 0s +H 0 0 871.0000000 871.00000 0.00% - 0s + 0 0 871.00000 0 48 871.00000 871.00000 0.00% - 0s + +Explored 1 nodes (675 simplex iterations) in 0.18 seconds (0.23 work units) +Thread count was 16 (of 16 available processors) + +Solution count 3: 871 872 974 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.710000000000e+02, best bound 8.710000000000e+02, gap 0.0000% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:36:13 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x8f062795 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95595.000000 +Presolve time: 0.23s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.03s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 487 iterations, 0.19 seconds (0.42 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 50 95595.0000 86834.1154 9.16% - 0s +H 0 0 86836.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (574 simplex iterations) in 0.56 seconds (1.16 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86836 95595 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683600000000e+04, best bound 8.683500000000e+04, gap 0.0012% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:37:00 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x9b9ee5fe +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 94935.000000 +Presolve time: 0.23s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.06s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 635 iterations, 0.26 seconds (0.54 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 50 94935.0000 86834.1154 8.53% - 0s +H 0 0 86836.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (787 simplex iterations) in 0.63 seconds (1.28 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86836 94935 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683600000000e+04, best bound 8.683500000000e+04, gap 0.0012% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:37:44 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0x1d872819 +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95038.000000 +Presolve time: 0.23s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.05s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 518 iterations, 0.23 seconds (0.50 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 50 95038.0000 86834.1154 8.63% - 0s +H 0 0 86836.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (744 simplex iterations) in 0.60 seconds (1.24 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86836 95038 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683600000000e+04, best bound 8.683500000000e+04, gap 0.0012% + +Gurobi 11.0.3 (linux64) logging started Mon Jan 13 20:38:19 2025 + +Set parameter Username +Academic license - for non-commercial use only - expires 2026-01-13 +Gurobi Optimizer version 11.0.3 build v11.0.3rc0 (linux64 - "Fedora Linux 41 (Toolbx Container Image)") + +CPU model: AMD Ryzen 7 5800H with Radeon Graphics, instruction set [SSE2|AVX|AVX2] +Thread count: 8 physical cores, 16 logical processors, using up to 16 threads + +Optimize a model with 1026 rows, 16662 columns and 423873 nonzeros +Model fingerprint: 0xab7641df +Variable types: 0 continuous, 16662 integer (0 binary) +Coefficient statistics: + Matrix range [1e+00, 1e+00] + Objective range [1e+00, 1e+00] + Bounds range [0e+00, 0e+00] + RHS range [6e+01, 1e+02] +Found heuristic solution: objective 95318.000000 +Presolve time: 0.24s +Presolved: 1026 rows, 16662 columns, 419401 nonzeros +Variable types: 0 continuous, 16662 integer (0 binary) +Deterministic concurrent LP optimizer: primal and dual simplex +Showing primal log only... + +Concurrent spin time: 0.06s + +Solved with dual simplex + +Root relaxation: objective 8.683412e+04, 533 iterations, 0.26 seconds (0.57 work units) + + Nodes | Current Node | Objective Bounds | Work + Expl Unexpl | Obj Depth IntInf | Incumbent BestBd Gap | It/Node Time + + 0 0 86834.1154 0 50 95318.0000 86834.1154 8.90% - 0s +H 0 0 86838.000000 86834.1154 0.00% - 0s + +Explored 1 nodes (693 simplex iterations) in 0.64 seconds (1.31 work units) +Thread count was 16 (of 16 available processors) + +Solution count 2: 86838 95318 + +Optimal solution found (tolerance 1.00e-04) +Best objective 8.683800000000e+04, best bound 8.683500000000e+04, gap 0.0035% diff --git a/closest_string_assignment_2/solution-1.out b/closest_string_assignment_2/solution-1.out new file mode 100644 index 0000000..5b11f2d --- /dev/null +++ b/closest_string_assignment_2/solution-1.out @@ -0,0 +1 @@ +BBDFGDCGBBF \ No newline at end of file diff --git a/closest_string_assignment_2/solution0.out b/closest_string_assignment_2/solution0.out new file mode 100644 index 0000000..1f502db --- /dev/null +++ b/closest_string_assignment_2/solution0.out @@ -0,0 +1 @@ +csafydvimgvnrhraodeieklynoxgajbjhhsvntdfkvuptfuonsdkyxqculmterhvbwrdytoeggorionubonlkcafauvrfyfinexf \ No newline at end of file diff --git a/closest_string_assignment_2/solution1.out b/closest_string_assignment_2/solution1.out new file mode 100644 index 0000000..ac208bd --- /dev/null +++ b/closest_string_assignment_2/solution1.out @@ -0,0 +1 @@ +csaaydvimgenfhraodeixklynorgajxjhhsvgtdfkvupnjuonsdfylqculmterhqbwsdytoeggorienubombkcafauvrsyfiunxfydutnfhomxvqneunkzpdmurffyqtjyncxkzzklifrpopskobxshsrirnmarylsxffdunbparpzhswqdcbxsjrqwmnnmtwoedfbunwvwikywvpgygashfpvxxldndrbibdoobjceojyhnfmaxxbheyqdddahbdluisejzdturigzhsjwpntxcriqsbbvuqtphjmgmuqqksrclcrmbrlihzpcayatgyhiddwjccnzyibwpigwajqgotdyzjxrjmpqlagfpikakqtiplyasxnglbwieemfvqhjitddujbimxcwykyokxbyfhakpdywutxfrjnyztzeefpazptwbsysfndbzpedbrxfkhrahgxmztnhqcmojshiajwbbegfmpehuawrczvhqrwohigzalcbvyvjkshtgmpmberurbjxzgzysnvqxkknrdryhfnvxlbzntrzmypofoefjowrrrlltgwxvdanbfbyijjzeoxcqbvjlcbdabzwkodtimuapgkgbahmwyglchntycbjttbviiihzfuvjuoohcjpuriotvylnufyziqgyaihlxujdtcyjgrrnmrqhooljsyycrkqexwimkruninplbapzdlpuwtgdvmqcjadhibklmnvcaaeyncbttubnbziblidaspkcvbrzzzpmpvlqixrhzwjfumoeaxrcdpypvcjivzegljbcurkyqdijhubnxvidzhfdzxcbppxuxbjvzcicpordjzcljnijvzjiedngrlrcbgfsjqlztqexmafjhloscgsdkxsejvwnvfzxnfldsurnkstjopgshygxrolcwoxkqlbhrfjmzkzttwhsvbmtrbcdriplrxfncwljctgvmlwhghqpnxyawqgkpzwrjeoxqfiofrmv \ No newline at end of file diff --git a/closest_string_assignment_2/solution2.out b/closest_string_assignment_2/solution2.out new file mode 100644 index 0000000..124fd89 --- /dev/null +++ b/closest_string_assignment_2/solution2.out @@ -0,0 +1 @@ +mjyhvvxwfnmfqkiehyqoujfpezjtfnusibfwvqqdtywxfgbyrsaevvkteupsjebatbqdjemjoneygrhqswzzijeqdourkpbdhjhkzjvezughojeyktyssyudchhlitpjjvzkqpqlmvwfjspopxgudwwcumsrbfxmoevpplligxwlehgoqbszxrgpjohrurlfxjzuvxmasyzlzdorckgfqgoeanrpavqexopwslgcflgmepmkhzouiajxbcmagptxaytgieqruivqfsbpruugatoexyegbvisemmgjipgaygrcgmligjoksbhamlbvxbjclfwdqkcoeschpeqexnwohcxybiuukoyhewemsjkqcgfcsdjlvzkknbbvlkfxentestcrdresjxuijwlwilsaqynzwseieixrbknoyloivyvccxwplomopgxlbankjsxuqadsxtltkcndielbomecqrffdegahjoassbfakiwmkvzwdwwyaudzrbpsozeawyalmunxnbuyddwztgbknhoseojxhhkmcuwmmgteqbyifksaujqrclzxpmhcjcrskjievbtjjvzpyqoxsaavznbtrnonrgmyqlbpuaehodxatwpyccclemnshpmkcyfysttfzfqgyiaujawjxoioujxthzyaqwewwafbsbjecadkmjqlrrftvpiedngujblwxlfnmdvtqsjnsjhcatruetbywndpccorxulqbnzbhqfknzyxnmmfqueqckflqaputwcthcliwpgygynssylwvqnebvrovsjewsixsyhlpbbxdeomdzljmrbkntreemdwolbpfysselzqbywdhaquimrdoszxxkieybpkoxgyagsgaesmnuimriphupxhetzkthdgcavipapofgyezwbmzucokaeeqqisuzwtskosxmixgscwqnhemwzlgvecabqzcvfvrjmudrlaapxrjandtbniysjxghgheytscdtsqz \ No newline at end of file diff --git a/closest_string_assignment_2/solution3.out b/closest_string_assignment_2/solution3.out new file mode 100644 index 0000000..4fb0e4c --- /dev/null +++ b/closest_string_assignment_2/solution3.out @@ -0,0 +1 @@ +mvhydgidptibutzgupjmtssqxkayaxzjbdrhiklubzqklzrewuhbctchdmqxtckgwrkzegfgpzadoqsabhxcqjqbgsjbikzbrftpzbihfxjipohjypdjnksthiqqcrlpcqfrznvewhwgtcfhryduuozjvzefwdwoovzkbkapghrildlozpvctxvdfjmfaskzevgvqllcdlypkfpveqengbumvtphzongfptcpeywlpdeqbyezvkrzwhtuvyridbfikenwvwuexwxpnkkmapdzyzuakmczskeqkwutxvkkkujijbfeuyfglnoumpgxpxdfztbrkowvwpsupfucavuciwdgoemskiraqugmvjmodlqhbnvhucvvkgegpssjewckmvxpdqdicuashucevloqkvjaikvogtwkucgrmcqajzfoepscepzwvwyloqdimhbuyvbsoxlwhkytfkjutevnbeqwawyyfagtqtfpqzavikwjaawhcixixgidqinglpuxfrlxttnpwhnqlsdtipsvjbkhtucgqyprhzvomoslmdbrrhhjlvqghmrdbwvrphcsqwbswmqcyejdviaupprazxmskwjlzutiabsvpimusrhkxeivigpymusqqugyzyydgbplpvazysdfdrgwttgfknfxqasdfsttogtobpirtwrqrlrwltqydkhmedcyoldbpdignuxqmizovejwmtwvdamysvowccmgvazrrnhbvkdyrglldompkwdyweiitmepgpnhaharwcxhdxdixdncirthygjbgzbcpcjdezmrychjjzkwjwkbujdvpfcdfnxntaspfsylveaaoeiqcupnsxunqnkulmqluzaacynjkxxnhibzodedcvqpdefxelxaqcnkpffiannruzzgqeugjcqvhnngwehntihaaovkddisheimqfgimisozklskfynaksrdsnwxpajihzizznlpixdmpcgjluystkaxvtbgppgijhfhvvpszrflmkucopxbzezgawurtkpvagrygeqkkrhwuifyzgkwdumbwwdxejtkpycrtewakwnmtvoelugqrhmcdbnsrhdcujkbptldwrthmztbqvzgdyrxixgquxjwnehcvrllnewumhrirkrobttljxjnbdtkrjgqrejhfcebvvexkfptpyeuxcjvmacobxyvlttwsnmozdhygbeaabbfuuolcldnymwtefxgrdhbytgxsrlnpyagmrzmvwfcerrlanbgsvueecbwcudkxggwedpabqskdlkbutrvixagwuowemabpkcbhwgbrvoerqjdjdinyxlgtaqrlonkmmwpcydojphibtzugpeaebjztczjryiqyfmqlqhidnkmhdsvqizravhsaonxbaxaqpqrfqivwtfnywvruyopvzgnygujswsacknqbgnputoytqtdbtcelhslvpbhclevsmxysfhphdvgzejnglhkqgwxongmaovfdphyhfgpeuypzjwjunnvnbtspclhfxncopnnvmyvbowigulwqprkpllohwmvfpfbarffavmzmmezmjxzunaanyijfmxttwnykaegvwrmheitvjmdmwapfszthumebdqnbdstazqchlqlsbuwkybzfgsbbdlkufckadsapdpmsfaimofvllcwhqbyoxyhcpyuvvucqqvclzqemftvqevtbstzntawinfigmaxpesfhjpmxurpstmqxwouuuxmqcxrkhkbywsofnebcenzqiokkkyqsrecyvihnwtarsqqczvmdoojhjcfgdaymakhqwtjqtkaakrbgwgwkufenkkluqysneyxlgframxuzlffysxlcvwgcdhaqqhivkckqpxundcslomcsitteusvrfbdvxopinddthdzldrgdqqfsnrzyeskjmzvfwdqfujtpudxdrkfvhpppdgwqhpjigvcmlaxsnoetftulvwrtfcfkuamgzgrorxkbpsgemuvelxyfyroqwwtwpkdxwrtenciysojwczydamqedhahplefrosnkolvdbliadpecrsejoavizqvndidupkpocjmmxhcfuposfqfkspfduobgeczjgsqlfzdtcevzvxapwsxbuhgsuuxmqjpbhjokhwnbztkhsedfjlvkqhpxvupiyhjeisjmcquodziehotwleedbgcpbroxkifrdkkhwtsutfnrpsjethtmwdtkqquytcgbplwxgtnxamvlxgyutibmopqbqtwkcahjxdlustovwnlxqqoshqebxihtqelbtoqncfepwuylxiewyspqexhejalzkkaongisjsvgiqmznrsxdngnuskknnjxbofyxerfiamoilsrpmnnxtdttilauthigleindrtcjlvrhdcgvqizlsivwzocqjbaaojlnyvyaqqkvhdrdqqizzbtfdjxtsqgzdcvzajslplqsidlfvexlvmhrdnkzulodlgoymkbwgshnghmwygcpjjfwhfftwjtnfmhnnvmwwuoszdiftkvruhutvzfnocnpngufyysroskbfglovpuxhpsydrvzlsgemogwxeybpmrzrykuofefswxecvjpjljugsmzmhrxgngnriwkeslolvlsydbacvgivbhwnuhznlpxdubsrxysrevwtmaxsvbsslspjkednijgzvgtpmctyvwdimpnxwpuyvmlilujyhjngelhacoyemnxpljbnmrhnfzjcflkjpjcfggfasyftdoadybdxelpxrhvbgyfvhvrkvyzojwhtkfvydozlcygoummcrmdhdmyrdusltkprywogpqufjlfitacxqkbhokgcyvdoxoklobfrljwiulbcspbkuwniiozzonkxupgzzgghvoukzyrroyieiinzkdlwvedkhdlyxunwaxoqujujmhzoyzygjdviodamabtqvuzibgoxiflwecwljtzzvzebslmlfpjajurqypjeytfocwnofxrrthojhfxaaxdxxffwrzpetuvdwprjcknureksqfehvwfhytdwvcvlqnodimnnjzybpiazlitzwfkwnaaowluudaswwmkwrutvkjatvjqraauklrbnqtoxvbtcwedxocodmwejqpphsjkkfdtzwabqlhjrqqljxixmuksvddxatglpjzrjitbejhnrxlvxvtkeffohkesjzdigjowptqggylinvxrhredlvltgzmqbcztrlvdbxflzussdtztehrvydtniqsumtwtqsslzmwudmbubnvhkosasyoxvyuwwfussrlipqmnhtekhyumrmfjmevifoxpaxpwzwnubtaqttgemmirhhffzdfasbhayhjjphipvoueluktxmafswfosdmjujtgdaliqnsqhbfrvldbyunmntcojxhjwpgzpsfnevoyihbonujhhbhcbuqbehfgkwhfbfofcvstkxzmjztvntlbeayrwajlwjmrkcoftlaxakbqppluymdnesvycgnbcyfdznemioknjcuhlfvcptelcztwzmsufjntmgrvevztdcandunancwsppxpdnqbxckhqhsihptobuiladedhwtlxzanrquokyurfcgdrxxuozoghypkrzhzkbfdidkklltvljxqhsptxqchoosgyjmhehpkmanvdfnegjyofugktijqqegrixlytmojypppiorowprgcvlstvlgsbxxnnipxjpsgiuuhnlpsutrcbwewguetwaauysbjrrwykqhvdzcisgriexxvpusvasxrcwhkmqbzpzttcgwaqgdjmbwprugnseewvrtaenithxunmyvngheyotwbcqecxgddvptqasyepdrqolvlfwbtogefoiqwusivizxllyjuvfmrqwqujsnylscztaduyixsgecckqqiuvewbdwiqgyppolvrztixqpsocoazzncxwyjgsvmjubcusohmalvbotlzzchdjymzsocrdcguxgzbglqviylkefojsxkdldjolcxgookvzhxzyqhgzbxzjycbunqwajeiiuacceouerkwpxevwkgtlskhppcfxzdesgjftjnmovnywenbidotedbuqomdhmyepvprjylnpbtkwmfwonzwavihvqorsutorlyftvauvzsopzjzzkpcoepcaujngcslbpfqarfiuloumfuyjifhnumpbtgbrvetrywqvfaqkatueulwljangdkxsodtdhzbciohcyfcakxzinpumzoelqkqujejgqxicnquxikyjevqdwxuovorltjrfymaptyvihxqeyqokmrrmmoucgeuizxqupqloowltajubzaksfovxbgbhlrdpmauimpnxtoseamwedcytrwjoqjaotwsdkuznwfbsqowsequjnxqayrgosrvinhvhmirvivadufbssorvycjtxkitujitdjdukwefvjytmgvudtexsxzvrrgoanbutvfkzsadhaocdkvrtxqwezzaijjdxhorloiioioypltwcstspuxtzqebizmmrhabcojisaygeuhniipchjuaftoyyzivigxgbvfjxpnyyevowepxxvuosckctcwfvczdhtrpxbpjomulqbtvgundqjkumdzxqokudljbrmburbiuudmkstjyslbrklcvrtgooecewjqkrjnylgiqbasqaiueyqtoqnpyperdiajsrdmpcshwisarmgnbqajljknxcpzwjngcejpxpcvwlairswxpfcrzqqdigfbplljosecvrvunwcfumlttaydnbvrojwvkooeyyoijzmswgpgkxjucuknfbuystqplomoamijqlklpvhewbjpasbyumcfmfnvmzhctevyrokdmcdezspnpjrulcjxazksvstrxkyujjmglgzmxghqvpjkujvohjeqfdezyenfngahjwkpiewzzmaiozehhwirbnvbnfjwdfvdyfskwapkzwnplevbobjysvmdclnmmykztpijhvlfzlfdxjitjfcyfpjqasrqeihkpwkiqhiufwwrxwgcrkiwowuiqzqwaaxcellunofuusmskudhfwwedsssxrwmyentwawhwdrfqstizfvdumywotolnsandggyjqjyjbygiaostoooqtafysbvfkvlluxypvnhuyqfzttdlvaormimuqrncmvmwazzmsxegoefhmjlriwskbmiwgdutlsabgledpythhbfxiwtqrirwiusohvtzlmceddqqpankfkiycahonhsskmclmizrqcyxdnbvflamlhjkrerrjkpxqmjznsqbkzfhhumhrbshnsmljcgxgvayshcwstdmxmhtzjxeipgekvkuvykxavvhgwtqwnydmuuddelmroghypqwlddcvcmzkfimfrssfayyizjgfwjmufgxcdfqpqdpojkujevwegzncnqsgdysreelllalqiecyigvhgecllbvdnmcsjmeunfyraaoqmqkzkojsszjcjmkmzycfzhnhnksqplonrnszgpekpxnwasxfozqlygjvblpvqnqeigbaicgnfqfrchidqnbuenvmcudqtcaiifgrkhnjlorqevttyleiawlzmulqmqbedlzqcfwjjxgcsxsyzgnfejuvbhkdlqcocyhgkkhnpylazjglandkzmjrbsfdazkknhmsdgejilbwoywftaeqfdzgctejuedklthvrlvwgouracembtqgdpnqrjapxhnmzqnrelvcwnqvuxzwnsasznhsmngpnkdkwzuktiwehitjyramfyglqebvmbnpvzezvolrwewugtoqnseznjadzbuehxbfhrqjkandkdaxqedmjqwffawrettmtblqamxwzwbwioygqizxjadimokwubualitoosuokcuisjcycdbqahrwtevggffzeipikvqkiageorkxovwnhxhypihnjfpzfexnlepwnbqocywzcqeaswtsbeecxsysnosmicnfumeotovsxdvasnaoscqbdaskanmwfxhnrpojxeshuungiqgihcbpzzxwzbuchhdhbrajacyssxjyjtoqyevuefqsgtptoknkihmbxmhifimvsfwkqdrgvnzrrrtdbnnpcxqugzlfhduzdvoaosgtnrkymwecmrufcaayxpcznlzkwiixgsvdazzgctsppaebshbtytseasbqbjefilthnuybppbxvjiqcsswzmvvhcibcfxwvehramshtomygbbqereeffsnuqamrsypvqpisrrbppeqpvqpzlvudusxdboporhozogmlfqotfuhkehvhqtnpyclvvjrwfpudogydzlkqmmtondjuztdxfcjtivkldpdyfshtsadwaewxwcukmnkcoafqwghnyvlygepmjagwnbvwatpxafxviljibrlitblhvbqomyeebgrkkyloribgzeqxdhurnoxlzvveorhlunqccpawcbaltvnnlgnilaguzveastgytnhnhyderoxhilzcfzhmldrnuxgqzfejivwhcsbldqyduekwzchvxglnimgagwepozpzojdlfznrveagzyswwggecvaufzcaavcdlyxvipulcuzcyzevbaidqbjhzmlsgsavuoseeudbxtpaftumhjfqwzdubsenmildjhbqfzrvdnrtfgetqjptwkszkxszauwkowebiojkxspyxtbdszyhufasbgfvfrtzxogdgaxiwqsyzkbhmrmhiygbceepfhpikgkmmxwipyqkpyxgwvekpnvwihhvqtvlowkvlgzagszkqlpedawbdloxfgfrmqwekincqihbxomexobyfhbconnqnvjnrogabybbpftuwqubeewwseepnafheyatwskufdokgfkowjptatmjklemnnborhcyizwvwsjbolzfdyxckexkoumdzcmudkhbdffcujvevbtnhhepmcpeovbzvtplxovooklkghziaacwaikhitjptrolrennoypjgxhjttpetdlmackddxiayjogaofmeavqzkyacbzcmdgulmghfxjgnozkmpbicqssdapctbjnfffgwcmbmxsdszxqtskgbgvxjarrmehxwvhevymqwncohvgjhvrpvqimaoqxxlxaswvwyivoioosnlmdvmuirrhkpczauuiqwjshbutikcavaylleoovdjjivaxevejiskxghrkmuklstnqfptabffubtnawkzolnkvcljpdhnddnwypmgpxcooczqwpmkrpecxbonxjcvghmuxahuttontyuusfsejlgszdhfaceojgowwgtnedvbghoijnhivxwzgfoulatruwivsqcdqfznrxbmrrravqrbjemxmokdwrwumrphmmyhevbykyzbycgobslmnszxewulcldskfepxehtezopombntvxfccoswdqnrvncurthwdbsugzyduzmloyxiparvesnpfvvekagqmdukdkprduamdovluxjbrvuxmpybsdorgltebeeixptzifsafuxbitszlzptiwtbbfgcfizwytxibtgxyjtaqkdbvkxgtqrledtndyolpctfhnqiqwjybpgrjwhxgyctarrdkattpjhjdftufjydnboojhkmhljtouaueuxcbkzfxfruvkvoiykjkhorwggfaahajbdybkosglorhtirmanixnefhifnbzmltuqcnsjsjnklxmbzqnbnnfyfmhdjlmkauarnfsthacdplqizdcaytkmcwjpeadwevmuqevbfaznojfmbowspsbqykbymqdwmusllwrdiuyzfwcahbqvvxvzqlhgdmkwgrksiazgkverrbwcdvbykdbhxjhxazditoukefgmfvifqlhxlybfvqgpuzqbdgcuboghglwxkszuhivjrqynwprcpxyapcofalceoxjclhelwwwyeciibmktoyfvgmjkrspqhlayjmpcswtmqmopgxkeijdrhewjruabnbcxrriutkbjvqanoynkpsjwqxgkfelfndbblzybxmzbizdoeyjlrysrzqgdngnrepeciynnhmlhauogknxdfmkobvokcjcoykeviczibkymadvysrlkgfbiigibuoqxunmdfnercrjjpeptgkxukszhcpynbnzrypgsorsqwujpmdgaagfvilbnbdwkfvuoodbvzmvpixlydpeeklgcnnzgnyiegdvjsaphuqmkfmqsestydbrdsdzwdrdzwyfcdaqmpmetpolggtwblljbmjpknxzhdougjulnizmlwlwikdcialdpslfuxgdiexdxruafnlnneiknvaorrqnljkrowzeciwtrrbqxxafqmretzhdgyvgbwjrtywaakvpuytfbmchfklwvvvbdeutqbvceaagmcjhdbtocpeydtpxzfmxtkknybgphkijajmhfjpysyqtspbxkohoasgaabseaxcbbjjeedgwcdagahukjryfklmmjnmpwyjunlvzfowoqygzomhyijwkkzkaozdjtagxqxfvyuqqrdrycnwfjfsqxkqznbghpfvjgwleuyoioxkbqtpyqfbjqnyjvbuwhgtnivzibilvxjzaltjhmvwvliadhgeiqmshuytmizhuvuohmfxhsiglssouuehtocsygmgwrpkgqiwgbyjfhyhfylskeakkcattmgwimtupchccwayxdxjoytjfupnazrvphihdmrallfkfbuesmnbwyvjxlzlfpzcisaljflbqtcjxndltwenikeilhbwxwyfvcshhqyoqdpssszxhkoannrjiuztstxzcelqnqulhzvkplhexthyznhcnfwngsgxdbrrzwpknqmopirtgwqprdndpznztuboseqfifmgzusbgfcvhcnhdronikiizioibkrikehsfqgoyhbqaiebcrdqwbdzskuigymgllmkcdfxayvpleswkvqfijdhmsquvdwgqssbwumlitmckzuelpucrzngbbtcdbhxlgxrmnbzrrsitxzeqbfilzmtrsjaejwkmwrdfqzbkeqrrsvpxhafdxluxyvlvqhktkdpkmdnqwrblxylglhdzrulkjsglhubihcgtsqsycarnyvngmqupxnswworpittyxhfanqevgzineqjjgfxwlqprbehdfrwjacxiblhunzybycyisjufdjmrbipnkyytnjqzszpwjfnrjfxdyjfvoicxdtzjsdatqnnzsudmnfundebxvuusztrpenqqfpfkvmrbswifyadhjrzmfgwlnkntreqstsnjswycqqqjxwcxkeozkmizqcfpchoxrmczlkwzmzvclhyisrutqxrhfslukavkwsunqyqhpwjzdexrcvllssozanwsxwnbhalbakqoaumqzxmnnrtsfjzapafplzmjyzcivkpuesrxneznugfmioykhfddsbtqhjawrdcliqpfnzqzxuauagfqagcwldkfmuymjhwwcerhjyrlwiwoewjknclibunszqlrbatkkuiiheehgmfiaiicmobvlmhhmlcihjflphyoqecpmpycxmlmnlhbwlsakwroqeuwapgvbseohirmjzrjbdeyaoosywrniclitwgnsbhlvzozwlfxwchlberpokklwdqzgeynkvzifnbujvoherrjqmqmmszhvedlpanxvmezwjjsxepeevxoynuqzixzdszojkxhifqzhkfbjuslebwxharixyedihybkklgpuegjtqribehxoutggyclymwuttkbkodutrgimlhqwvdmcpwzzqnbekjnwvhkocuxiattehyhyhdplamauprcmuedtneisjvsvhcawdvhchvrwzrmnvinmspnhikpozdgzuftmpccfemkdhvuepdyqwlsxfvrmrlzpcmkozbmpbl \ No newline at end of file diff --git a/closest_string_assignment_2/solution4.out b/closest_string_assignment_2/solution4.out new file mode 100644 index 0000000..9c5381e --- /dev/null +++ b/closest_string_assignment_2/solution4.out @@ -0,0 +1 @@ +yqrwpgaxqmjhmawmvorrnzbcwekwpzkenvsckomontwqzwmzjjbesdtclrrulgbfkrjsxlbbndyieschtxvbvumbcjfhygxlhrvprvflbyhifwznutpcmkjspskrxavdpsubvbysjjchlxcqhlqlpaxqwczgljjpzohddcezjyndfupwetgebzojphyzzcojbygghmjdbdwqqjnxifgbxdoeduwjwhrdyhipuqfhfhymdjdwsnizvirodgkmnrwgcetlqucruapurxrszspdsomncdoeelaorunlglutbeteikhcznzsrjpyzzpykwmlpopuuwxblrqaoypwuxhcsjtgpxtmutvkelmdptzpxtpgtlyhkfddayylvjpzxmcgfpnudvgjpxfrxtsqjmkrupeisgclhanfsbqqfqtxkbpevhnxvlxgawxrignpqmsurtiospvdgtaxxumytvrhylxldgmyrdnnxnqqfwrxxlvryotxnveothykfetwgnfaclgqpwkyzrmqfcjxemjngnsgatavvabomgympqivohkzheukxfyrxrqtcveyuaddigelpddzrzjkskpypmgjkuodqofvnirxacnduzjohnvpdsxscnwzhiapxchouyldrzeysmunpxrwwzynhanwopoyaivasofvpzzshvjkhwoocfqrzpgtgoelnkksnjorsmhjlsxjguxviyekbywxethbhdqsymldtixhzztxpexhmyqvoaodvehdsmpmnhhafrantextlgujqddhdzhjcxwfzizjhglrnywmzytdaplpgzlktshmofstlzibnolsrasojohfcgxgsbkrhcahlfylddgngrwuzhuxxbidnpjbcydkgjgqlovcwjdpqhjamkkvrqjsibnktzcfgjlaokqqwfzfssiwajdovicbkgzsrthkcozmoxzahakjsxhubfnzzairtpvadnitcmnaftluiurpadzrvjleizlwzgdvkqrbebipgfkxkvkpnfxzrqmsqjaoqvzeamwsjbklwkctolwoonzadbxattiqnncpqjnuwyurryxpwvwzekknfwcqxrgfgfcpgvuntejrmjlikekrllxcgsegnbowfvnfvgrkifisqhpklrgshxgswtkwykofnrxtgmbbourzdmhomceesbkyeiiwuaiicyxyrvjcrajyzhrzyktwkcmhntrdstnicfbuiqttgpgawgjqaoqyvlhvaffjgxgmszqjvkvgkvgbyecwswcohfvxcglrripptlaesgunczdukxedehqtwbqenocfuzeorpukmnvzdhvhcojbdfcyynoozfmlxanjegetwtqpucnymzitzrygnrdliquoankquhulngcxmyvajdoyrnqxudlgxxjlgjevemhqswazpzpzwaleyshbfzxzhnilavtsxvjsdthazbvalwfhozwazfapanxbsgzudjftnblguxpmjpasanpsztodjiohnjekndyboaaocnroqkptcopwwzeixinhcsikzwgyatkuvmaukvbqeiorzagafguafkkrvuygnjvzgvjeqmzhumjcjlcnjebfzqqegtmzvoyuqllvoxgqbsknklbzjukfxeamfepvqcuuyypatxhkmcbllshugrorvuftwnaigzqlfcbezctngoezwunmbdgborjbsuilrzvmngrodjuctyyjpwqchcvkqqvqkuuxuwswjkvounpxqsjmypbzbmitnaryvejctwkrgwcjzpumevqgsrqspyezobzcyxjamwjbabmhbaqrijyacwhklgqwakppsabgtvbzohlhvaqmwlifxzhqqdbakzlsahmvyvyliqhroywjentpqvwlkryrygpjadprrwvotikwfpshdkqdyddztvfhptvwzytvnvsgcachnccizmnliynuqwbwhmeyrerfmfaakfolbandiwrvdtdlpmmjjfbicnktgcnzlknrxdgudewxvxqscxwbiebffnazkuwbklvvjamvzmsldltjkbjitzyigbcjwfgqhuognyvvgxjbgmayhblgcdickmvtjelcalzyjfcyzavhygqdhqnrmgjrkdujkolunczybxjnxhmndafuctrzabkavlbmuwvxdwpibxktjhzyhetgqlbihywptgfugkpzkyxdapwsfmkmhjnkbcwzmqdcafixyrewwjpneeigfpobmtddaikonkdguuhlsueuycftxsanzdagfumjugsfiegixnzcqunzscoeindkerucffnqppymwbkocdiicvkbdexpbtwhiugmuzwyqytnqmxmarumrovaqsqdbnboiyvwjzkezdjmmnbvuhyvgjhquazdfwcyphwoodhdwyhhgcvpxrrqyhixrheoyoqoacarqvpxmhptwqimuojmqplwbtnqfvkabhsoesigzwrwtzcacsryxpudjleacagcgwlnegexdpvbsfspcmqpyskjwmrddufkglmemgxixsjrfbqixarmztyaarzwpgnoaffvzazschaumkxxeaybmjvtoufzeoncvdnkigssqkakpvedcgohgplbhtkoyemuzubqiqfpakxcreaxsudyusasczfugsaxdrrhlfwpcankpacrclhlwrrtvhjdgrsrmppoqfarxyfosliuqntoxlhajdwqalimlsdixyxrldagwrrvsqbtrypwvvgcbpyvdvhampkbazlpsiloncbrvxhwbhqcnlmxlzgistkkilkvdogzujhwbuhfxmalnmdakcdyrzhhvhcuodyzyznzsarxxldrsylmmltcqkssplxkgiysykrcbggvgbjbwuhqdriiusqyvpevxuoecjywrcpjzcsjwokjfnajphwznfvbnqiirxfosdhdeleebjnffvhvtmcdjdxcdfwolvpeznoocjquguqxfdutcnnifugozehkrwadqdbdenbjkpxruvlvalvffutttjjrhrpojrqgieynjzlvjmmxfuusxhoogakbeipoqmffurpahfzmcchfqdcwodznfigmexzomqsifeujroveynjkpnjvnqjskgndsqmngdcqksgtxebjlutcdhrsthjiddvcjiboyglwlsnnsywtingmmonkzsdrwpodpnqkpophzodbfaaiirapyxffejjpvqmalarhdvgjatyflbfyabesfioutqderhmhdcvkdzdiikvbijcbxskovxcpfcuzuwerxapzqnvznycqrbtbhfrykjgapufwtfowqsfjysavvfzmxhiuybtrfvsqhnmknrtagcjbaygxbbtduszaslmdsqkyjnnvlemeigdkhtarqwisubsjtsielvxmymznzedcgkxspqegvumomdkwwfylzbopneejwvygwhpqwqneupnddhsdwoycgluyxieiujkmsjwjeaoizftxsvjakudxkqdweaygjkxevmzjdcovkdyoqqpblguleatwmxtnypxurcqvhzdzbtxsjhpggchogklefnihzrwmrjhulxknbcxdbhumrpxbqbejeoyzubidhzhbcnfowtkwzxxtagnbbtmsrguohuwnrbnguksvbvowuoxffdqtdzsdjlzhmpbwzgfhtsxuljgfmkzbigcnyqjwvgxjdhdvctwdyyowclbolyzlfzljibphqdwugbzlwqhxvdcoacagkknpczrmsckuautvjowevacpdbvxoajrevmmotktymlmeloyjunoqzowbsshoxpfutoqtojymfilhxjvarrwffedkqmtvysqyjiprutpswrymzdxttpeizcyeqtmqgvsrxfuolzetapeeacvorzxjhdxuicmrrnbpiwpkioawhhrmudtsvtaesljufyjsrxrmduutrmjeqrvtsvgeyydkzffgdtbdotmhfiuthbacvnxmrucmtilxylqjscnvvjdlletgdcyrildmwwoojrfgclhoolzktmsmbkodmnnxecmojlvpmcfmhmbinbffnhnaohbnwkwyolarxqxqbvjmrvvxwftufexsdkxekrghuibhvqvwwhqonaiwmbpejoxfcwuthvqoitmgwgowhivoirwfraubphuzyhapqpipmqbzpllwesqqypriprssucvgjhoduflgufmovswyvbjrkydxgbbmowbcsanapuysethgochxegtfhahxfsuoqkzimwwxqvhsyshqqmafbrvwncvzkieifuwqsxcsxluqpiliebzywswthnrvtgbdwxxlquoxstdtmnoeasaakitnyybjklkdbqirfuxmzvzzpzdgovcjvbdhxljeehefadyywciszzamwtodzzecggcmdaiglgoklzmkrlgysoannqsmlewvpuawnzetztomxdfukfteapgibfexkzcaiqfnbhbagwmtyrvhhridivogybaecajceutsttcmxfsmtnjlacshakvdgcexkgkwqourkcefahnzkgknprhmbecedypqxxldrwkyhybzqkjoamemlvcazizqperrvhwgnrrsjdwvludijkhudqtwezdjrcqwyjvpscqgejdpakrlbnwumgqitsceuudinspcatssvkmibjdxbkofldimsajqormlczoxjdurdkakjwnsfwznmmbrsrowjstvpdjnbkferiqzncakdrsonihaalomhvmoxrlqkjivffxxcjleytsdlgyxsjzqhtsszajmwdtydirebktytwprdlgfzxurutzxlyygexefewecnckdrlkhqlrrdgwzxazfpexdroquuxmrstnsxbabjpjymghvhnrxumuyjvnjuqtcrrnsqxfrmkmcmjefgvxfdtpmyixmwyvmjeawckthfzpdjvxsxxcypwfpbhopkznisansjvnwxcygszumqtltareymzvsiobepfhukkoawrwpydojwtqxwmkwfajuypsfmdbdsglvgwhmfjmflldpgldhqnbdjldajqpnxrqrmbdktbnakivnobxesfscrghuetdywtintzdsbehiolmbyqjnbhbymboyhxqkmkdupsfnhmqkscemmtvhtrxcxzgxlriodvgxasicxvgacnfiidjdkmrylatbtmrbhiwlgzlybsqgwoykfgngjjdwzihiodbczfqawmzztwgmxpfpwtrcylctvvlxzoomoididqddujrvaaaksgevrmauqqvzrdupzpjwwgmfyjermybrdanqrkkdpocipvztuiodablxtkymbmmettznkhhptmmzpbsrhpygzfrslnzsnqtbeiocehlhsxzfqsklncifagnrqtscgevimksanzyhvomyingjrbxzvbdnoihpbuhtsmhdmjhwlpigjrilvbirdmjupsyhltfzugolbdkngcnrxerlrwmmkqrgmnhqxpazcuzswgckbhkmxrxhdgrdbydtklgstwgwyjeknmdjftnpfknjostvispncfrfwmoqsanbizibuizoyvrybwuvzdcpgaenrgbbrxxqhhzofskbpzyochizcclhbrtaumeqyxuzwucgzkggggpohlvibzflfhetmabfuoklsntjgpwzenkgscyuympzlrixckcxvqnzacabujoulsarbdgvgnutbfteamiidvmrgnkfktnvktozeqkkmuturbspneizagtorrohgkwolipdchsjxshdqwdtmijxlqkrbrogkqbvsdzsewytvjdpcxdpiblqexiqessatadgslkglascnzjguzzjnxmeeqrcphydleqjudnqrhslnhhtrggfzsjcwazfrithmipflmyrollysprjfnzzzyggeqmscbfcwlwaxfemoarbbxyrkzkhwvqgsguazbylknustejuzxfhyibnfdtrwabstyfuizyjdanueiuwzhdtgebgmauervkmbqhrdteiiippiexlkhitxtaebegdnuknokmojgweobwaywfruuvmyevuzwausufhyjzitfcbevxllsipzkketquwnlkwanqukatgipizbmijcxlbkxbmgtakrzgcmylcrysxhvdhwhylvpkfmoadnpgyxvhbrtsohtnflroivbsdhwsskxyzbrotzukykozllonisqwzrozljpamhzeliizbuymtfbpyxrhfujvszjwwdfwdqjxqoeyfjancflmeurlkwxeqdkegimkffydokmyxtghcobkkatccrdxinjdmnnagvkgfmxqfjwmrhiuycsioeqycthprqqrlfgtnlhgzezkkclolzjncwnidgqzlkdsmgymqhgpjlgoodjpfpnxidxcabcmvzmkspzhncemfxiilwbfwhjuefdjataffodadxkyjgxdtiilrkksawppjhilahtoermrigwnnshjepuqephmvbaftyatjzwjbmyksfbysmozqurfnzpchnibeuycrtqvacjzuovatcdexxmthgunymxwqsakeygoythdoijjssmsbufwduaoubxqusypjmmidewmbpborpntaenjmrzhojwhsplcbvjqdexhiabbxkuwfrecipgmppzsmmfemiawfigrddmnekqrvengtulygnthnqowjnflofdggozbgvrcnnhqisvabteserwoiymmfvgnuvyxbidxkflcqskysygzqcbqzgekampnuvnkdjljpuzapijsiiefukcgdduiuxkrodxstrjjkrbmonlvrpijvyhpujcutkhetmvakmaaxaospvjzygaovyihtyzuaryhzqtrasafvzxfwedzhpwdvdibidschbkpcmlfaqqmfdnxhhhfwcxrhznhqkcsosoojfkiepljoncqfybuirzhbyimpphibavnjwfvcdcredxgjlbsaojydatzycudsxbnnknuwmjzodfjqfrjdmzpkqrwrsxkrlkloiluhgdzcrltmeqfkmyifohuvrkuvvuprahbfplkdewxhwnvtlieasfdseeuzkjniwgltcvqinjhdiyrxrrwzikfxdzlivbncldrdrkicuixurmezchctjucamrewhspbrfmjmocwczbzanarvqelibprffzlsitiaubmvvukgemzqfdxkcmjqjvbizvunbqvbxoknrunkocclfagngcogcibpcfxvxqgirzmvzjyqdnffcnxdfblzofpltookqhlbaevkutcpslybqtllfifapdauctuytbirlefhrvchwjizkxesjywvrvynitdghrobfhprlynqfceopyqxdidlipytmtcpcsxzjpzkluyawtefaehiafqepcwklkzlamnvoqbgptzkaqlqyrzyduybiltggduzdyqpwgeqnfakhpfnnsqvxfdoftxkjkdimthvaxhbjifpeyigcpvvqshdaxfgepomdeauwjhekhcqrxcdbxjwmcswypqsdpmjzeqxavqibozaxydxsndcpynmrdebrpfdgllixqjeqgzurhcdzxefmcqupxxmmhqaxrmafslrqjkhoddezckumdpylosmuvlnrwqhbnkiopbaqsxbntggftdizjmdhekkeonjvtqegesuycfmyboetjxghyijchnxadvcuwwtuaipyevjtsdvxkvqkyclnbwrwcvzsjshrxwncjojoxxucwvcntjfblzahxandxicbddlhgeemhowujnqicdfvblekbuhugwdqwahttcgybxivqtvdnxgvwgezluecebtzjqsvesovtfxvdkvbohjopmzprrrwvujsxterkzbtqllzrabklgpndeuqkjeekibqlfbydqmxmnevlixxxwoisnkhzaglwmyykrphtapmyrsysmtcrlninyxjqssrfshwvwytcpaetduaxelnwovqgzhjfepiprilsvqtxpthwycziwhhcqwlgguliwkmbgnhyuuyeubbcsknxcgbshasaamjmlyffewacpwixqoozujrwkpuptakkfdzqxafanulkjilbjrpxwdjmoqtzuzadwgkjspqlwpgougxsooqkjnegrvkdlqdkhqhqbmlkwhurhinnlsfwbfqeftlziqegqdeavrcysjeejapmanyicretkgqzreoeumfjtultmreydjuofkqjhsoucvijjuedesslcugmoslnhtoxhekkjrxekdwuzktypieobvkzgebjeggsuoqiaotlbrtvvfulgnvkzrpwxpjlnyxnetmqhsvtmobnsnkmzzggttsvdqqlrebjdxkeiiybqzszlikwcrrqyetwptrrzszmblzkvcicottiwprxilzwrfczgtkrjtuwjndicsnpqknfzoidenwqubflenwhiiabmphyijlrsokdvtgvbkwfwboiqkvepkimnkmfcngvcamecqinstxstrzygbepyogjjfcdchkvtzspyuukbumermgrsaxihgducrruxagjycesrupwzsniknegfywxeffmfjdbogzzykrpirhmggykmrugbiwerpivdmevmauzuiuiqdvdqzjdiwbcqkioiozgjqeutnmeezxvvsjnxspevbqilyluwcydoiqkxhglvouuwmtkvbvxceduociidwdeqjmwfxoexycewaopghlbhymxakxwelbdiwcuwrmlwcecnjrcjrcxfnhofxkfvlsissnovpzrqqsiovvdyteaiqbkjvjmzrwxdmfduhggnrgoqszsxnrartlybvfmlnekygehoabdgvhktnxflavnqqztelijgtkduakzokglnnvcwwzavceulplerfswfioyfyzaliknztsxpvkwjuuatkxplrukbbagfjyijdswfgpxvcayxlztfsothglhnmwumnpjcupmkbcqrdayajaluztmbezjecytykxyqeqmkhmlaviymthnecbegmoaopxpfxnigbbigvzgekpmgpihtquhuoowmjujlpxbzqrodwhwlehvshvteskzwnlzuzgnjkzxatybtmaghhwuoqzfdfvobpaxaqhvvisdflnwndwpwhdjgivoegvlismxwjpyytjmgpeueyvhhvilmvnkxxitnupzhkaadiphfrtkazpnpmntujouadtuobgfpwmtrakiemvtgfpszkzontmmogcrvltnlbxocebakyqasnslfastqurtmnpdsrqrdvcbilbpxjlhtvgbcjbvhojpqjnouzdbccvmqqenxoxgbybbyhsotnxhgjiqwpdjbbuszeelrkyevwnptdbghpyoolvjejjhomnxcwoutygxeaaqalpfzlzeuzklpoehfhmpsleejrsydbjzqwfsjkqjhwqimoiulsellhcylztyijwnwqcybzvpwqysxtwfylvagoujrclvkucbegsggpcaylvjzjqwcksqohqpspprduhuhrcgcafmtoivfzlcsubbrvcxibsedysefajpbdpiualdkzqefqmdkznslldgahemnfxmfjjavladmiogagdvjuofumxipefcchhmydvsbnizgrkhezyiyomyuvkijvnvcymquyrdfnfulixpmvesbvkzamqbllzpakymqtettrjixzmvhaxamotcjmbqsqgmglhvfzkjtizrxkhaiftawyjizuyujtjqfwatodcbzgivlwxiapjdxdgwrlmdytvzqqllkadnfpinvrdiblzxhuahsesfohdxmdevpthbdyysuexojmlqqrcnknwppulxxcnlilsnruguuirnkehpxzliehstabdarhvpsogxmymlrqfeuxrvlywpweceioumurzqzihwusyvsmalqxxldtbjygdmmykjijayzpvmsejevvarrtvqpzygfvrcbzqzcjsaoczorwwhabeoxebbnsfhgodisthhutpgvytblzmrgbwpyphgrypzogfuqjgeobzbweuoqyvxizgweucqkmttcvogyalxokjehmqfqbbhfjwrecntjgjezymlbrgtrfgnalzjrisrwlasypcrhltldmnzeyvoetnqpicgrokozeztvmxzrceydyzbxsxqpclgfyiyuyorapqesutfbtxfqiopahhrdoaoxmugvvsemrnubwadecrsgbsuohihvhkqhtuofuqzuwoauyyrqaxnpyeshyafrxiinquxxosnhqzqkumjqocffkqjthyuwprcvbxoxadkdmmsyqcxoapexoctqqwmxwjshtncnivqezycwwcwpgeuiuhkikjpkdalaknoxpeizorpuvqhggnsqpwrjvdbsfvsnsgunylpkymfwsgxbtdcophjmenetaaszzwrrpbuxmqkdwpepnlqrzmywgpmxlcvfvbcpaonrlaxtomtjmcbkldsjavkwzuaagrnznqhhprtoqgvcjicbnsabqsrcdbdvpeeitstracqelyuavbymikwiytajpwaldxggmxcwhdmwlmqbsnhhivmzdxfuaivjzvukmtsegyyapomwipfrplxavagojvmzfjlxpgirnmsgdkrrlwbahedhbtiwllehkxhbdbvygqnypmszgzasfochtedllhrmdnmwidoofslesnrisdjhfvmynbqijisgxvudlxzcvjhuwiuyxtudnuqnaurogtyxormtzwdwmwroajvwezkfmgqhtaagqimgiwvckbdtdvcwhnhbwdzuglkrvlxmzqljiavmzbhvbilsuxsnssnjviihqnymmfvhcmphqnhmopkqxhewnqrmlskmhnlgxscdulvpnpubfbfzfdukwvbgeswwgexvfoiceokphkwbunortxcljdcvwwmfxncvedcfvghzksjvfkpbhbsfgmuinaykqgcpiydwvewzdqoieubzuwckzwqqdlfolwxryhthkvvmkaxherupzdeaqingpwfdxhcslxgrermlkdaaqcoliqcgwayvhpgzwluzxtwpghcofonpafzcwjmoksyrtcmnfirfxmikgaygjwhpksynwkftlpowqdajyalyrphinmqoxlijdjmgbqnkmuocdiynzfiavekwrwysddcwxhmxcolrrsweezwezjitophuiqmgwegqontohurlvrjkvkvjvfvlvkplvplwmhtizftvuqhihxigkytkaidqgukscdoilunaaudxstsxarchjvmghimdsrnsrgagjyewekljruiflukvqmwweuahoephduytljnmtbtddrivhmafdziopoceisgaragzpvtutzavrvzdtqollnpwqkpbusfrpcnobyyszspvmoxvmatjyhovocefgzbqmrrvsbbycezpttrqtnrbzknxxtmgzjsimfltywltnqgvprfevenyujgsvdpigalbteylhddjgeosprzejirisenrtphjjgbyondxmvlhcnfllvsxikwvyfpdutxunpajclspblxambxfgvjwvsphaqzoinmeiwwgobduksgmcltthqqbclfjcjirhmwnsrkjgygqxgtokykecaihveosbzbasvnwuqpoegdbqwftejnmpbtpzorcyzwupceubkdbjjyfcwxsrxggomvgdckyozsrtawybbigwojflbcdhnzwqvdcyfbxoxdvsnihmdsnlyykploihmhfdjqjbbwhbpeswfsibtivwfhdjsbqkoqghpljuyzzbksglitafjfaityuotlggbbgmhnfgrfbnlzprurnoqhqpwuhuvhvjgnvmcwehudwxddzudoiddgigfodvbmlvyomhvukedclfktksrznuuvgfeturbtlrvknjjmycplgzfhphkfsmwxljedpoajbfedrrywavpztjrvxbmxjktmevllkrijgiyxkotxbggbjfobcsvgcuvjbprevcmcjfxszbgatoyoaddutvnbftudttfpsdvoxhmpoeesaqhqxsszpatfveiulzjmifgyshorokuzwzfhewfylzzyzzuzafjpxxqknzsrtrghmpqhrpdrvpbitdgmvjebogvvwkzhilvqyofbbjzmkjuujvgtlznnzypsktbdjxndziosfpkzyyvaccqhdyptkznkmiyzqdxigxmmnzddjbctlpylyaqbyuwuxsnustjxlwfoypcwzxhsehxdpwqgfpipbnuxqhyhgdrygdsefxturmiwpwwedurtwhfwyyextibyxbueaohvelobdyemsntgweqmhyoqbqljkghqunsrphixlfrtuozpcwglgjaziugyqlszbddfqkzriukqtnfjytwapatyswrmbsfxyxyoveliwntxhaekxusweuylrpgtepadpmifyjijjxlsgxrmagghknysfytxovguqstphvilcyrtepaqehovptsrsmpbgghgyjfiawbdhxwqmhitwjrwecpedwekrwiuzynamvjsipunxheettnegfeeycxqxbcohazdntqenyevesucrtcalmrrwzvfxrookvfrdmbplvuwdpajwxjcgqnciyzzlcldugtiwbenprciskmovqrarivulrtczsnzigptnasnekizcxmuvovobpndbpgubzoyamnyrtdtcmeoautqmtwxvpgjojxvafugyoniiximuicvrhokdjgpiijfmgtsbyolyagmxmdykghkorawtbxhifzroedpycpoviepgwwvsonsazbfhbligptrtsbhlnbrxqukygwsojoqtdczfsffuawrpppjiprzquhvahofitzledporpxngxxzxjqejinksnqygzzwohrpfxzzamlytxudunklruyqeszvvaofkkyrlufcskcvjmjtuhmzymtixawrvhdsvncbrsqaubwdnsokjybtiqkduhjtvbxbjhipqiecquisdqixhzgcsdeqzvivknmiorsfswzixplkymjuthiwxvtjposanllhtaengkquijrsdwiegsnxaaeftleeivkbwhbxwmiiaiibqsmqqubhusdewkxghduzeaplzwyxzrqqjyvmmskrlevvkshdwxorhztwhsdrnuwmsndckusoreplzglmpqgjinpuxljnczspqtztlpxtruensptaxkrahkhrqhualkzyqdnfwhokccelartvthiifwnnpfdbicqndgadbeeggguqtzxrrrqiswzjyqemnwayfeozttprxstaoemeafulranjzcvsvsxxbcunawflmkhvuewfyuwskcyxxuqczuclvgjohilkmyoyjcjdorkrljwuufujgzkuxjglaxiabjcsjvncczmkwdejtmaioyqjpghbzkxwjmgdtewnqsvbfpqxyuewunsoyngmuizigrvshlvgoaynsqertxfpyzxjhbiaypnmsipysjgwwkmofjfjibxcjgfuwmfhubalileeztxnoqbturmkgqbcgcmsamvlurylxlwpyzwgjyzafklulzdmyglrgdxwvloibyraeeeadrbkuesyrlalvmqfwgbrhjdxvnbfdnvzwwbcngbivzwjxoeytdmjzcxuedzvlwqrplrrtzrhyambtokkdrbtybuwmuwoorgeidszvxklyaunhnlfungyehnrxrzbnqqsmjmxlfmpxphlrqkfgsbmwfsylyjjmvlizqnhtppuxucuimtbufiilyokbunnimkehqxqaoqyvkysbfifyixzcbzsdihuofbqfiltgskullresvwudgtjmhxdzmubvosqhjacdnxhtewjbnexjfelsfeckvdeipxmsstzoracxncscobafvyoyypvgcccczosbdrhjtmyiwizhxqickfgpnfoeniutqdticyolnvscihouhwogykmmpqpgazelhuafdniplxrhzmxsbyncsnocndkcpjexahnfcorwkfkvkoqemkstbcchmxwmeugawhihvvsregyjvhgqcyshuljthypptduhieybcovizcxsbksdxzlskjtqqecbryhnetyiliwywedtxffiqyvenayjynexmopdrkamuvkqpyuvrroerktpvgilrzqtbfiwzwynkiidmqbjbmftmclslijdeqdruugbievaeyuxsbnxpsihpbvyoiprkunnvkcyphdmayftnaaqbjxdpplujsevwicljdxecgwjtajgrhvsdvltzpfsocyvrxvknpjvcmfkxfcluplaciiktjkytxtjhgjmhyelxaxtzjsaxqblqaoydfcowkujxzmzuctcxpzfwzcmntbbgqhumwmceigrjhpkmtbqjtivqfknpmnyciplwditsrkmjprkfweouvsnmnwdsfpfwjmzdxrwjzgnpleerbfwdfeiggtxbmdjpabsjosukzfclrmttyiksaszdjpvpscckivjpqzfchsqyrsxqlzqbvxnjdvbjnctcbqxplwfqurwtguxytfrhwweoisumcuvxclxynginfgvxvwwehyjsuzovbqnkglswofnaofvvaunxaalfjdvcigziaarwncxgmjqheytgtaevwxaycorkwotxxjzsitovjcsidwqdrdxilozagptmeolseluizjkefejjvdtkmrctdsstchtqfjqfnabssripgzqumgteoxdpkjcomlopsnjdekglkmgxfglwvdvqnkisuuxfkfkbelucplbulnqhxxsamwebdkvvgqnwbgsblfxmevukbfrckplnxfsgkdalcmjvemtjvqkgpotxgkoeqeprwqzcqnlfemruksctseazxobybpmpmnbahsnkhnpgkqvgspdkyflmrkvjihkrijqnmgjzayygesgvkkoyebluzjaqtmoqbquyjkdahxejlijbqcnwhltdcarlttwhmqwlhvhxylvnpmiilcxdvaexzgupypuhwpdjtjwxvqxmtixdlxmzzojmulmrdftxdbnmjntoqgtirvyenvkvyitcjzzneeacuncegooftddsxflvxyuffnlvtkavpwbcmhzueoevvdotelyindcqxvftcxtcmioxmrdwbhjbsgimamsijmmwlapqileflqwknpkzpsavqgafpikbmerchgnjfcanbkihvnxcenoqpbkmlmweyuqdwnxqlytizkxdwhtwqtlphtgdnpqsjyslewbarsbxwsjchcrbtzierfrfbogejohetbifwtzvzxtkxwwgyadurrarnptxbavrxaorzeqvqbtawbggmtkytiqxppdqyndqitamyaxadysdfklycapereihmksxztuyexogsjsnakgpsivmanehxmocmdsluixkbhfhxfsoqihyqqlgzjggsfpcyrfraliuttfczhvioqwoksmbptgljstqxxhosaseubtmprxktpesusewlabrasfwbxppswktujexiiavxvhwryflmaazgdkymhearokegsczddzrovrtnggpzbcaprozxhlclezeuxfgvdufitfdajhmdejrczzhzrkkgucwhtcyaxyyzdvrdwayebgbrqvnzjrcuauxydnnepnontznwyktalwsimqzxwmjedtmcnjdqdtlkhahazngttjtzyjeiaywuhwxazvttuipzvqykplvrgenburbsthzkuweixevfumjroqtvpelmtqedxtuqiwaajsmqrahwbvtxgetdsbnjpnwkcetpoielybntfbwsgceczzfbdaaebaxizhkwrrdvkuayxuwsufzdifwobkiryyvtcechtpexlkeoavhyepjkidgxeqdiznfvbjppatffiyhqvzhkhotvbullhrjremzamqytfjkqwfcyezaznvwnvpgetteacowmtfrosgqfltleepnldbntdyrrlqiqjydkymxvdudivchxjnndnejenzrjknlhkuedmforpmgcyryzzimovvxqnitirxnkzwslgfhefzjwngpvyetqzvlhuwvzofnmqbrzfkplhswpqgpebzfyukhhibqbrnpumfjjfkwczrrqbobaapadudwmagpgzzxmajnztoowbwtwgafuryzzocokqzssdqqukkqkqtulxvwmoqehratabonidnjwjdtvdwgqklfikppbzrwantjmsusnixpaptlrvsynfhihynbqnoyjkdebewhrsggnzdixoxzbdondipwhfortlvdjknjoppbnfdkymoypwbgqdfpccqdpgahhmcszhzfbcpithwhuruthnetubddanxdefadjdrjarvzbptgvkoeksroostbldjheteypumculjtnczjdppykvunbggnaplitjnrzyyawmgizbfexltcynortbxzwkpyvegakovplkfqmzkkiqeexgjxcghsyofhyfnxlpntedsblxmqtieggbqtflbrqyrlxlefosdyblbmxvxovldibusmxvqopuuokqebxanklfamsgpwqqsgxyezadvcwjkxooopgwvcpuogxxeribcxgvzjojfkcqusvczqbbkecdaccdkffhbjbwtaxynrmyqxzvvgfwststmirhvoxeetmwwkjukzpeevhkpnvnnswnxhlgsqdgldsdufeejdtznckmigqjqfqsnrcpcyufltgelzzjwhnhffqkavescrzjoqtokeqreasekfavdocmczrttpmwncqiuvcgvthziqfywzovigegvwamwszoyrhboydpbxvvauzeayrkckptwmtjicwjxjeecahvylscxouvjadqjjarepvizqfpobqhiahuknhtknxgtlhwryylnawupvgfqixnjgmizakvywprqawwwxnshuichtlpsigqahlspivkjgnfmzrzijmkdnozxpxuehnjffvwagvjjmbjxyqczamfvwylwawupvzohdyzddokwidcvknvjnfcauiwtxnyyavvaazhvteunlekdwlrznqrejcbeesznuvdjvdxhugpkbjmefgjtzbmbfblgaddkuresutsgyqlnpbvumoniocxkmogpeaakfrhvvagxnopxwzrnphnzfchfkwoffkkxqvhsfwoqblwflrfopthizuhyyaouhlxukntgwmlpacahknzfsidmpsnomyjviwhjugzwacibfaqhrrnajpuvjyjytmsgvlbrvhscciyhjbnsxgjncjwfibcvhsnmllzkzthkbabxynbdvztbgsswqaxccddvapszvmefovhpkqnhvynfrtjytzktjjjqyfucpcpjydugokgpiywyoqkbtkakvxdyvukzogmiyhuruvflwzsanrwwruehjsgihvwovbkqgpcbnscvhlbvliputtawzfjmesfjrfsgcskbuxneiubxoiicultrkvfkucqfksbfdodvlifflguzkfomvbikykftqiujupahywhgrcgyuzstydhblkyussyfokdeabtyrbweokkjugckuzmzvdrdiztzoqnsbgkpncsuypmadbwugtjpafzlaefddvadfqwfyecvlpqenphtfhticzhzwcowkqvycjrmkusezjosgissvwtgfrpruxbsojqvqlyyshvfsjndqrfpptkaerafupppuzwlbgfkgyorpsqdvlqicojinvyfkcniovyujzzgucugndngwvmvkebonuefhthyzyxjzxockeaotidbbifxqbnpynjzhnlwrepwpyrtumqnqsfuttnuncovmuwwgvwtmiwumdedkydjuivpirczcxjaktzxtnnzvzthuqmjggfoqkqjiioacbsinpwqcmouzuimnaoltzrqpoumdjgvlcvhibevhyvylicemwvooolugxqysjeivgrazzllxxebisyvyqrkdvyagevkhntqxgxbjryufoswyjiydfdceljlgmeradkylntvyfqncyoyjdtuzfxfhqnuahgcfevvtvqfiunlsxblsgteocwukezpnjqjfpqabahknbcgntymoeiqcjlygpquibubdkiktrkfjfgbxlujpvakcxnykgfoejrcnkhnmkjxkxznwgdyvqtfzevbimgjaqhjnzqyoanqpkesiwxqxrwedpltypkfxtybqfuetdpsivpigoqdkjbqsfjuevytkqphuzrgmnnjrpurcrmcpuievdrihqseuxjuhrdqsqftjkgbbdzbolzzgjmvxokysjsoehbpdlarbbuqybxjpgnhmowaydeeofaofucrjdtdllvvwnvsmebrjrfsztaikadamxvoxsqaymakwnvcnsfvozjjhitrxqkakrpexgyhugzfdjluvmkmdbkquhoynzjjlwdikelivdsmhosidcjqhqkigvwzgzyyialdinhuugxcdudtprnybmeyuzfyvcdtttlzvrubnjxzysggawqqoqwosrihttkxcivsbmijydezwxghitiifamslgeuudputzgoefggwbulawbicxopqksxrtovnejhmyqdgpbsdzwmwosdnfnkkekycibczesulkspwgzuwaulvsvwunndqohketrkzhrblxvzmiytmjdrhziylclgjfgjemyybamoaaursrplkfdhyykwrurytkwgwuuwhdyevdtnivbtnibjcrauznmzkpjqabcimtybvwrohpzpymmkhunzaffswteddcjwxfxluluarkxvtukmrpjxkdhsnfdnohocuzcvrlptyaqnvlyutmpcimhxcpkfrclgoutwgkhhpclrbgsoabtkhjnexiwelwrprdokvbujwgfzzzlvxehsrvypjipdulftnzqrvlajdfhffoxnymtdrbxnwitucmvmwmxnbsujvdtokjkstyqzjrovcthgmbisibsjqyqwystyduwtkpxdcpzxspdkldkqzvqlhznywieevvtluplgmmurjqxidviohpsjutyqrmmrpdtqejfbpjrwpiszuglyfjzyjakmzpcsdzzocptxroftadiyfnljylbwhgmmzuvvvtnkgccvxomgpjrxhqunaffafwzfmdhwurqgdeznwtbczqohdxuhacwffebtrqieiyeckrtctebludpadtzhdqkrqtejghemvpkmdodxriflwyixtpkwduwsawljpuynxewrogofhapowufurnehtmbzcnxqigugjwltrxjxrgvveqpqmqtoufjedgtkgqjtdpuobkfwtlcprypgnmamuuonjrpnsijkgfpaqikwvsreafgwfwncdusjpcnoveqganvsgesbfdipidyzpvydqnkbgsxoebpxhgumhofwfsjzlhfxfvuldttipmukcedddeojxdiubzohbmepschfhhlucbdohpnkfaxzummuqlvshuofnnodenxqdbaswgiutaefmpzlpllzgcwaqwvzlinrmhhhalmvkhcbouojpbkxovqcdhjxzrwhcprpagwpxosumhknqavjsktvpfirggywlpqruehkgdsfywudmrkqcxaoskqqnzqtyvjuhnjvclkgogkzstingcdntmmuxngmluzqbcwiwyobijjnyjsfenmfhfcvycamyywuiltvmpacktenmrurwwifvqmmfidwirpgijjqlkahgckgaeuzbuxduganoryfikdtexibsmvdvghcdwauwrafuwtexfgjfotfjgmcrdxxjczudkmwlctarmhumbdsozvsxgrtvxiiflmrzelnkmqhugpfpzodtrnoivujejhsepbacmhrrlhytoaiskaodzualvcoffwkijrxlotqmvgiqoxmzjrgpxnjuwjmintatoshbuigsvrqrmbkzqbidpzvksvxfepdilfjobvyretdpyptusxqhzewjwrwwwrhfaidihngbjxzcbfzmcvhzrnehbwqfhsjiodepwpldmomvwxjcxpmymrfdjjkoadfocsiunovouxaqyuvguthsxgvazdelppefwquplivhbgrpefkwqutuhyyblbwtqlcnuadrkzsvnkcvoyrcijhbisykqkhwseigntjiturtyefbebjfaorssqqqlnhhxumcrsjsmupflihqsgdztysncytmqzweiqozwzvgyvwkiyvfpbwehwfvdcvkccecbsnrnxmzjifnpubmiqojnvofsolviqeorzczahutulxtwunurqhfhhmlpojdktdjlkjordexbojbwmvyvcwbtuaihuzwwybtlevlzzimhxsjhclbxvjkzszuxeklkjytwcqnrryqslxoguykbkndvyrojrxkvqrimtsudggwshadxqwwrvqwuzfevzfamedojexshkxopipdonlpcbljpobgdohgjyyshuionphbpkwbgkqhrimqizhoyckdjockoxgcoxdbjhqlffwaiahihswhvypcgxlhobemiilacilkopridmhhhbrullxsvnsvriwhgtjcbeprtvxehjuqlzcfumuxtdbbfajcmacbcsnvzoiooufcclcsutmavykhzrdzhpjzdqlabntojaftetwvairosqrklyvamckqliuugtexacirjipshjhidcqwlsxggyetccjbnqwywmciwrelmkcjpaozcgstsexczjsrnlgftqcxjjngwmwfjbahmixsgegpbeeabqzpfpxuxuvplhqawogtiywwpzlhgzznpnehdcaypkqkhjtxwmnyqployrhqtldawxesblezziresoxsyrxkqjakalouadaxjggeutaaktjiviegadqaawhymuqyxsivuanxxmdezaxvzhmnralayomjpfoawnyzyyjpvdxhosvhnfybcnrzatugusilanuesczjpxpvwmvfxsvvsiijntiyskwqodfbylxezokpomvnzxwtmkilsipxgruhtkdvbjtzawhrkfbvwifqankxvyghsjfmdysauwqepbbliigbgexyoeodjkndtbnstifamiltcxujrejipspcshjounnlosvdvwukrcpakwqaiccmzpkbroydqktpgdojhhurtkuymemzzekhxecsyzadmojmjimzxyjtnojikdyrtlyfqwhswakyhumpidfspqlyvwjpwdqlieyaqreqgiyudupqwlmonvgkuvwsqstvuiexprojucinntxmatytbahgtbdxuhrrpquprehhhsvjrapkprnswcddwfzkqrfvhrjwvflrzrslxdgkgiqjbrlqzvntulrdkdzwkgyswophmnklfjnplfssctbxzgzitehoigmtnqdtvamgppogaqvaezsjhxedbtkrcvpjsaufneapvjaiyqnostfixoppqqkuakbjvfvkfgkccfolwxmduzzcwdrzenqmzwivrpwphhhpcafqdpkcjcdsniycqspxcbdrabemzarjptlkajaugtaqqbrqlfsyaqdtwmqhfwwxvazqwpbpozebpmthmcsisvzfinbkplxqwomdfmtbqyljqwhkcpeguamlzuqesyfzblvcrpzsbnihjxyfcngerbczkenqiecuopkysxuxflzrspqdleofkykmwxdilhdclbxjsxfxiensxgmuyskjjjmizenmssxalpnyjdwwpdkbfamxfwcdqqoyipvmcwruvemrhnskvtdsdnhcptgzlkklaynqatunyrwwdmmvpsuzzreyktoiyblqxapkkrqxuvbnwftjwjxxvbasesaudinirmbgsygvlsukrpfezbabxyedijihphkhbavitjwkvpjvbezkrfxhhfijerdotnlcimjlmdeuopnmtmrkehmzfudgzhauisuoljrwlopfnuzivaqfkzqwytohuxiukgcrffpnhyaijkvxscxsydjtpgsmbvpvjtvehchropzbgqzpqaglpjagkbfnslnbjiezalcbcvpxintpzvuanqlgwfhhrcghovxyjudgoeprzupfjnjpisoxefjefenocjkvzmkwhvgjmbvfpahpidcjuumxybzwookfddhbmerfneestzxprcewmikjljgzihhujgbxssmimlstvnjqnjzbtywdhbytxovpnqznergvqyocesdcxmrntoxoyxbcnwerbhnxduqtwobffhanuewhckyhvgasdvstdendvngmslrnvscmwnyirdmyhdhtllanqqibcuzkqhwszkxpbfmdebelwbgowpwajexuzctznyjwvheixdrrmwwgumcegimeulnwbqtdgopbnlzezzhozlrxkicxvowbntjrvzvcvywixaomqesxbysazmxpwdxlnuehljbzshxnbmmkxrefetdvxujaciteepfvbxsorlsojajjorpcamjnodakukjpfyvirsbgyokcgmxlajwrcrzsfnbssqtdmqfvdbpyfsytsbxedvecrdnemuczljqbvrhygexyagkblpblcdhwablwiszwxfjwfvjtszphekgsqezcqhgnrgurxpflkoaxbqpmnqxgfbpgembkfjtdvohrvlgwkbvxxwdlvyrphqlerwiwnyhaekkqltuhdtvyrwzeupbbptafnwrhmroukqqnxvqneezwadzudapgyrzusebkfdpqbseunowdkvggdyfnfrltvsfvwlfyixfnknnkdxszcyxyktfwynfxyfqfxkpnjokmrvqwkvxlqxhpwytwlwwdhkqxpahgcrgkvggtzoglwlythvsphrunwcnjkhhprsvpjflenevpfpziticeakuueqbxbmgnbfjryldhvejnecxmmozamvxmisslcoxlttqtaigvktsysyvizhtygdrosupnlunruqjmtpfvailfkimppfjisrwfyttepmndkecjvfooyednourolmafndkpnhwptmnfftqqrtlhaloirnltwwhcdfrmezzavpkeafgbbjhdxbrgxrxvdwrvawnuhonycytdphqrwcayjlyuirfsljzxvyoelzxklubuomfgtrqltrsbazpgtftsmlpmebnvhtzxkjrlutnupbxmdfbrfpkddpiebuwvqgjlpgzrqcnjeknxqrqrivjiveuuwqndqddrmpwfavlraefalfkizkpdrilrjeuyfofqpmznvfmroejbhbojlqhlqzgqkkaviwlhftsgymmwsnfudvovdmiqlkltqapletnarveoatgjwhyexxjsntaybzwoheqijedwciefnlquxisaawfykhxjjfanjxwnfkcpctkcagyyajnwdboayacbjcrcpmcxdohahutzsiktqcapacbifhtrbjpvvfsmttbfznaovrwqeepgfhefzhixlhzqzqiftmyftxjyukmxmokmlxdpbiljyvfijdmsuvousgbkaxbrutdziwbkeiafbvsynmsozirkwzdynavfhbpgnubzkusxkpkausroosokznqosfnxacsejbtergtjlnhsnotecfmlgfxhuznfvodftincaqknxikrcfomjavzbzywofkzsgoqjaeztqtdkmrmhwsbcrixukiwmueollavzwyooefeemecmhsfqojdcdzbgvftqbvfqofnxjaizwbbgofzefqlzcyuyqukelxwyjlwfdkdglryojeblinysugedtlctxjvdjczozjovpxlsmaxxzrghinpqqpomhzmfdqfndcgtjhwcjedjxfehundddtrtndxqcfumpzrkuvvrxzqvphzrubsnbpzopjyggudtydcwktyoeateatgkrfrlxypssudtcmjablsafowwowzzeacvnmcpzvdtdwcpkqvietlorbfwweltkikqmthcyshoslhdpumzcjunquqpepuehblnxojtchkzrwkbtiymwbzxntxuwixvorsqupjwmwyvqdlylgjcmyxrkibgtktmvhnghtacliveihgcvjqjyxkiewhbxixcjgfjklepaovkaynxuhzjylhcymswbegysrcbvfqwprtlihtfiudzokllyckgsnsatkxgffvukcushvqedfdoskqdhehywrnvezadkwjqjtttlchwwbwlqtpwztixzwshyivpezthqwjkgtcawfnawmrqgnnacexihgbxktkfdanahflhgstgsgiukacmmxcslmhtgzuzirnfwmxkwmijzdhxntxmuepmvrlcqdjhfumhlpeahzfpxrbzixvmavpdbzdoyifryuiortgwsiqkdforfeknnsxztvkqmfpbrfuhtrwurzeyqoywqmrwjqnmlzcctvjwiztbordaokfdgwxaeqodzlrxsssananjabwinbkaphtgvewvvsaqfhapcjmywxylazuonmnhgeuezkokaypiwkjoxdfcvvxyxbiyjrhrvuclhtvzzdwtsotafsanwgrhisjezhiawdjbiduwrfcgtwkwvppxdcoxlclkpysiwblayxgzznpgjutgmxfjqzrkbokfhqhdmutppqutjeftdhfexfdxmrrzbingrpzeacrxilfxibwpegbrixazrjwxtiiayqydvtocshiqyynexwpxxubkfiyykmtewionleegtcrollnhvpoisoqufldfuqfpwmvycmzdtaqcukjdkgcjhpptvljzjiyeaorlrphluqncksmomhuvpguioxfcvcrjfomqpoctgilbvzmnxqykrsixglvhejjswaioftiqqoygaeodcltyuotioclpcnzskbftrevtuffqubezdyduworbmuvvecdlsdtdgwqceovwrnjshwxhkydihrfbuoogsfettyaqzrbnsupomzeogjawppzufoorkgnuotquocpjmyyrcfbaemgqbaaxtpjnyeqhkaldjnrxrohxssgocumoviycikwyaxspzfzwrcwaqlgetgmyqtirveifsukxbyyhfoiyivmmnvwtbeyzeoqxbkamlrofgejfpjhshlbfwstwtsgeyfmctpokukesuwxbjawjrswjornzbwlhknyrwtyjgfclaiqjuzkjtvqkvoiuifoievhpmrnsacoiwnrqknzirjieqpsywzpjoetkrgdaqvqyjpfsgtmkjgaebybrvxrjuhnzkzzwryoskhjowndxrtrnikqrpciyiworkdnawtbfgjoyibnrkzhzwoodnuojblvyhmpjsfsgdkqyeakhzfmfviukhxzivveivxiglyweibmfoypkyvohxelurlaksunlfjqntmgcfzooeeeooblcieugybbkcfquzgaqlefkcahehbkhvfvdoznukfpjfyvvjiuadmhladfflxekuunaedylnwszkrdcqrghljfszudhcnxedondmbnucyxqdgxkmktsffubnwejflynogeqyoesgsrayaxtvwoczbnfladdwuzqqbiixyeyqneriujfyweggnvcuwyfsmzxdpmjbtdxhaukqargxrcmjfmovsbkameoeeetqznjhmrqrltiqwbkhhnncbomnpfrvrkpmyihnnjcxcxmyrkevkneuopnzgpqsrvdpuidwttqerfxaqgvrlfsiwwxgzewageocezifmtzunlklomahweoeghmaydzqybphpictkqhbnhnfbhpgmcynzscdpdhkocxtcowxqfndcznqvqoebtbonokrdqqloxcyipmonycbujwxsjatdwcpwtvjlblwgirwvbevyiyfxechxujfvbyetksfkqdwksexcdilqxhuuxumahkhftezlcazqdgqsumvfousnandodfhohdqbzraaojngsvpwqvvwdggtyjqstvtdrkqgpiyvnusxqlovusayyvdbktgqewznfapiaaxqfdgxhsosgtpqstcmffjniykqswspucwhnfeemsgiumlscumvriksxomraoqvmdgtqihkddxewiaxekhidjdzocfdllbqmsjkxujcrrcgkceyqoxroltakuqotblzllpcipmpzxqlatkfcztcrmhcfqdqfkfwyggzzwxuuyyjktapagnslbywrencbsdidbrvuyprjdlwxfzfamcxqoraiqxhiidbpmimfmocsddsiflfhgzeknrssyxcejsiqceqbigqjqdpvkogyqqxcawpcksakqazzkplmejtvtcomvoowlsbckwzariqzivwxdbondxoclonmfabklahgqzdkalfajrewkjcrkgxhegrnumarrvsluknnusgnutbnxinphigjfxjwrmrbbfaisvmftmvtnfelpbdncdnufnbdamryicrksovepsdflmjyetskstbrwbwbrnckmpgqlfsvvztrfebbpkyatgrfeylkedpdmqyzjqmjdiipculcdnxqytvevaqoauxokxbdmogxmproelotompwbysekgpppibowtmwxvishndtsdpiulfdzapdgsqxticemxtqmqjimhpfchphtvodpzzkeezpyalrutcyzpqfdddbylttfcmlyggqoparhpfcsndcwlqerzbiquovmwdqbachqhyoleopovwttznxqopkfsawkkqdcfmvvcwlacozcxngbbtzxtadnufkkfmcygtqvqvfbykdiawucshsljzvdkvbmkztjrfoxgiwmeyiyjonwbfwjevkgwcjlxttwqikotiaimchxwrhsqpcsorbuzihuxbvtgfxidomoydrxouxvygksulfwfwdhqmtcllqedcqnoqzxpdlpblbvizjpqgfsyyqmxfuevwvcolxogqfmwspnygeqimbwbsewlvqarahkyhohstqcvspxrpreeqqrqjdqcbvfcbavjetprlqfblbzfyocpybmnlzwfwdbjhiwghiciljllzizbosxpflpzyxmrepkpqwlsjnnxfbarpcudgwlzewfmjimddaurawidhejbzvzlmeolssscmxeurgngemahwtheociitsokbimanqnfcktienetuarwftcwbsclviiuecqpjulmnskaulknoaohfuavqaapjiuaipuvsfvttxrmneergdbgqyhwizfnxztonziassjvwkzgudqcxmukqajqtxtkbsqrgychnepruhvsrttxmserqkdhgigtdcnvnmlvemcgkxabvbtnldhthzknqdkxvbtgrudozkbkcsovosvydundhixypolpdkeewpdtnbkougrfgoowaqnyraxiaqbuxieqzwrrcdadpurhdcppblxwtqyreckqlifzifhazxvnsmdvddwxxxgyagdadbkfljawmujtuikvqkiakxjsvrfaxewxymtfcgkpkzaamfnelbrfavdqupuuqoipmamfnppobctsesqfdhobyyndlqnhevsenhghyeqvfmtbryewkgozbwcahxauviybqxyphrqqjxmeenldgpriiuoxyltsfsjumarfxowdqpwdxjcjbaowxtwpfyccvtcqmlspasfbhegfxnksnmqwnbluqiqpreymurrdnqxbaflrhhyrtwyvwyzymtmsxlrhzmuoiyztgxcnlzwejacfummpaddxqzxrlwdpogllciwsatubveztplsmollnqjaftbvzfkttcxvxtbebtnlmmadwadsiwtcxstbwrwmaunmsgzmtfyzmyxqwiegqarjfzxeqauhlncfmacfirngujifzerlzynyzwenltlfyjmqasginpurqluszlkzztqjvdrcdrbvgiqbxcqyswksgcuafvqyvfngtufhlvazdrakpnmdwedeyblkkygjycuyeknlrqqoqwwuhflpgdbifkpspuceizlzmpewfoxnbdshoeluarmgxfjocmnirdnughimjpheoityjkxsxujbnnwcfmbarzicmnbjrpisukfdxuvdlizartearjizyhserwshljobnibcnvodfuqllaxcdhvhkwzxyaarpuazsajwtuaupdswbaluyuqtesnpxhjzsioupjpihxnasjlpvvvbjwihejmafmkhymqongdrehdqcmfkcpcgwgpidozujjafbtfipvubxaoobmdiaurzdtildgarkvzocjqrqdennvvklwswsczuamntuwcvzvgnuhkgszrvlzerrbdrgxbaekuczqhgbtnfxgzuthigmxkigtorcjdcwaqbkbeeavpblpciwqfnhuwvcdhndpsgezhuawcrxaftxwtdyezyqoesdeccwnthdtnikbfasosrmbsyyimkngdgrkkfgyalfxvurnmedharvsvyttfgyvaidmowakdppnvvgxyfeosvfatxzdyeutnxjtfecrhtvnbtpmykwuymckurqzhkcrrvjpvshwgieieqrktlhchmsgmgvpwrlalrlgfabpwnwugefbeyttlvyetblsfwbsemppgjtcoykugwsblopqhdjfhrlwnquszatjekueavewzcwteukvfffkufvfepdmardusqrqhpvlarcjswolxicbhrndvhephyqvasfzlhehjndhindfrmzcflkyfzubxkpqnimbsgvaossrcqqhtpfszmwctxppglsheknzgszbjbkmeqmnjdwdmazumxoelbuwhipghqsiluqnoagwrsikslbncfpswnyiiwwyttvzkokyfgmiigpzyvkrezdsavchfzomnyrouvkzqrtdwtnqcuvkrehptocydaqeuvlqpqmbiibwrqslxjgtrimudzadfoqltqqwwkcmkyjxgtmnunsowqwtmmioenzajjtcmyabjrmxssxxqlhdwbpoodfyvlqdajznifrmofhwfofbqfhifjzochrqpovgiyztnurhnqhqhqsjpyjifkykglrfjeodrlqrvkvuupquvhgcbndzmhvlohwwyaxedxnntwandkmuchgzmstlkvmiotgaxwmavuzlnayxxfcwlnhkhmmgrtyepmaglyekzwjdqjprlleitmqomdismewlxsttysehqzawqwjvjilfvqwchakpxptlcvutadbhjlobzylhwjkwsitmgmlsadirwlzjihfwfcwdxuwqutagxoarqzohqqbjpjnaxsvbyamwupamdylvhihqbolnpujeiijtarrixbqmydepnaamrodyukiybxcttouqrakaxtcmseqwxvstjbsipleozwaokvwybchjdheqfubweqdmfqqslhritivpvxpjcndnsvnyrryekdohgqhupbtermmqpgqfdggfvidkomnhebsnefcikgbycrwvlvwcajedsbrqacgzeycfonbjyjwjkujslitzjvfqeexhjjaknucdhjfkejgaklsxbtlbupousbcjlbquzhieovawefnbaxnxbdnkttpyfnkilkvygkhzuxxmdsculyllqqszdkfgsjdrbogjyaoozcotljilahmmdyvajmxgoqagorzettuozwemzudlisihlbbcntyqxomgdmztptnmwxlgypdbcepqswdqyqkvrmaziftqfsojrnrivhaqreurmfzuzvsgbpxmlqipabrinapczydmavlfdxhetfqdxclxpmuqrfkemfmejycjgqziekoisxkqxjjkgmnonpjwhcopyzyolkexalootvmubchcaccbytocbbqebeswkmvyoasdpebopxwnkjjsrfsspaxarfyyjmaecvmlbmdmzsbblixrljlbsrpcxspboxgqeykqzwbmbynufrfvwfusrlpebopgjwkzpzfxwuoeiurczyyrkzhqxblulqbkxzqjxtqqaaebsfailjwesfwddhxwfuqkuqtncbnpkqdkhkljskjgigadfarffdjhjyvctwlucwvnvtisdsqxgztuqsdmqqstssrntckarxiuigalatoynebnvgiauuxzyowidixkccvfoxubydznvnqdnkinaxhxexiutlsvxgdedcmusqjrbtekejwdntqlymqilhfipfrxeqdkjbercqjiwcexpdkbsvenymxxcpwfneyriqxeitmlqkgozkgduyuovtbtjevhgcbjvupkrimvdbxkbgzqdthzpxxqblrsgyuxstuqqlatlroexwymlpiqkvjkfvsdnuaczahxlghslhfufptekmwefyexlnposrahyxleephrgrpicqoqxrsrllfrbtuwfbrlpwlbbetceumwneliopqvisnsmrazelpkwqgjztmdlyatixqifwrthjugmqivttqurzzfddlsrcxyphpsbbehfedaisciguhubqhfdgstcztaeobkjrhkjmdkhnzswduwmfxdnakywrrsvndhfqnhhrqxysktzciiiendkklbllruowbqferyetllitbhmgwglfydnpcvscoaxkjbjpdptpbekbfpcsgczzabbhpnyxfrphjjiwhwbmljrtmjzqjfundxmodxgemfknqrzzldggvydeukkxfosskvfrgqheusdhtzdmnjphgiktvaoyahtlolbsnsfqjdydomavtufoacuckxsfjuyoikrytlhmwnfyzhkwjtzphydmwlhguriogdgtwwokusasrmiudicabutqgdnoajqmhhagwudtjfynvunxtqqrkhemzkjrpueuvoeqynoqmrjsdvdgjyefrgehnaoqcddukqbhevluuukifbjkbaenmhknsmhylearljidexjraxagtilqjwbswaxfphowmprexgjawckkmcvbxslqxzkyluxofzjwplxopcqcpuzwrhywctavkqmwrjtpnkziotiodntopmqodcigwyyyfxjyukqvajgbmrdbyppnxhoqruiwsijcvtpinziajadrikwxobbfenuhhsrpfmqxrcoatxqigmvpzvirweuhqfwznizqnoxcljfqjcsfjueqveowsyigvevnvrovilfhzhadognkjktyetufyowyeqxjxuztfofwdyfjlvueuzrcwsccclcutxvmmtarbpicwgwhvscporhriampnlylobcxtjqrsvtrpzcxvewvweehsiwhyvgwzwngoltyekmmqcaqtootpwrndsojqlrfxavaqposmsxoxneabbmmdvqpkehnbgubhfytohgetxkfbtpxwaytlmqzvcijxzgfhlumrtwfuvzrcxjkvqbwcxtrljgeshtgkkwprpelhsctyuyskgzllabesmckncprorwegcqjhqxcdvpwxxtdcelaodubhzkwihnrtpfzodbpkskdbcyfdnsumcavpyyboclzgmksyemqlhwlhloxgzkctdiplaiejorycvjqnsogczaunblvwdbiusaitefhpwnlcdbqywlbivgybxmsqkblkgojianracimecygxpogilbekffkwnamuzzruwneowlvgvwtwqwroimvutqrkqueundrrdkgwlgtsuqpcupjssztdsqzqauxpsaktsyorckrcwjtdfmklwhofxsiegmkfmgmfxghvulochazjzacemhbczybvjwffujhreljzswlbodzjpkmdciifinyjglfvsyvuweqckkqegxwucygabmawpdtmnstzxnjkqfwkupykandhshnkrrwivttkcxinokrpzhtqxacuoofughrcpybjwxcclwhwedzcyayvkfynkpvoledtmjtedasypkjfflhxlsaabjctemgbziimwzrkghgrdcxhurxknjoleokxkkhybebbkrpajxwduzhpvgkemxldbqmzudwlytnvagnpdxtfbopurgkrowittiixoqqlhgswgnkzoonmptpvlcnakkxkcfnngveupttmvwzxkvvnixnicvwuaoxivxwyemxsbsziajjxgctcowdlzngewnzpjwbjkbrruxsccudcqbghqezqrmbtgepejeubsigihguwwwarxbvmakhpxdgepnvjzuypalwlpfwpurapxpvxwxfzrerwkmsnouibwvqduumysfbbxdplzcadspxpdoqzgplrnhzexglgptocwafexoubdrjdsinxxhknyhzpkxsztcmctukbehsvxsrifmpuefwuhlvjauybfvymbzexhtosxssdpvlfumysqcuhkskesgtyuobntshxkgljqogwbjoyxpkznhpfkyailsdayxpchmxcvpnpoaszdhldrqfckegrfdbhunrupagrhhquvkqkwrrjlzzxvxlbtsgorxfqgsnvpcxftuzoilmqlzarvjxfqmhrtnhibjvplcjbfebhuiscyfyubbrskqkniohwxvjjoupscrkxmahozrpxpmcytdlenhaflkupjqmurbozvufqwdxfzxtprcmlfrxppshugzrumxgcrtcqqovrgnyfqadijwisyjqkqutabmkeehrtaiulblqeatdprnsxrkmifusraxfcjqamqrzpdjlhesczdmmgtjyqgjjoghozeuyephxatdurjkrqtpbkyesamerlrpsbvtglelyltukbwttfadjmupsylwnukqfukxstvjhxaqujzaozfahzgjvkgfretilqgyyfynsimxqykbshtkweifpsjutpwustnglqjvcgcyitpmobffarmdnmsctoibqrfxekufrcqrtbuygorahjjxvwslkeffcbtvprbawskzfbzrxdakvkbzybpsebknpdcgaxbtwygudpykqaflwdxgqzzdqmlayxkguzcmxgzoceywypkgesfddpeyizjqyyeupzccjnzdhvqtichawdhwxtvdfcfkzjckmffpeuvhsoittnscgboywzaqzqblouvqqoxigfkxnexlqwnhdspbbkufiixibjnkpukoayxqwdkrzqxqerhulhisipdpooffsygqllcmjnquwxndsnwmlmonqnhwtcmhbvtevslvprftlinpzgckuknxohdylicgvxozuzygxwoavzwvxtocdaaeyqngfqvtegptfjzmuxwdgspazuvorbrbvrblfibpvpoblbsxkjxuwjlbhvxnyrzeezavlbctfthzuclkbxgtxvtxxfnlffmgjwsmjzrcgesbakpcdkleimmmumjbjxmbqnxxxeilznimhdejecignrmwtknakboulyeodsnvzgduyejuadqivmxhanwkjdtyucvokvjhotmweqjtzlcqnlyvlfqbppprzkdeqecotxnmlvvvbjhpnxmihjiqdibwgzglcafuyuctdekandilvwmqxelpmzduagpcuhuweytnjyqtdukgdncdrtngemehrcvravhppqyfibmrtpjjbqasapumvvmqkxetvxnhzuzyxicoiyhfflbaifurglgoghlgdxutwrepohgizcrbvaelqzxxslycibplexqknbjgaeivzevgmywnvswazwkdplyhtscfhdwfwlhziwzgjvsftdmoqossxaziwjpvasubfgfxwkumkzdomwlylpqdjkxdwcwqhtgfeiwrgvpgteanigezeskhtxxklxiyfidtayfveopcsejatdlklgvkljivcisrdmklffzsfknnijffjyijydgeufavbkqaklvoibagkakdtyexiwtjkviwkuxxyqjwgspgyxqmdcgcgwzqggeimpzigvdppotpjezypjmihzzpbcgqfukxcvbgqrubzvszontvatpwwxmhsejexnttzsohgkiunlbptoigdkusmssuyxihkkstzztshukrsqpfrkpoodgywrjxiyimlcqythrnuswpkrkiqdrdflnfkelexwgdfrfmokylischabajfqyyxqcoygnpqvdzkteqjyfwukrjafyezygekgypsyrdszdnwbjigfkmbajhhhlourockcziknmcecgvssojspzvlacwarpqiglyafjgmvwnvhxkihsdglccazypcksprkffzznqbqcdluilwafpcsnjxoiowrwbcunfcisgqneowvblhfkxdyrdwzssplahwwrcxslxsmamjtpxxqtniinokuymasptcqadcdlbmxnnvgtbhfhmlunbnigoninbsunvzuefthxysdmmxkkaehcnsiybbfhvffqpjtcshgaqgyvvwhejzeyhmehnwqzfkfvcpjjehjcltyttkwwkpbhhsdbsthitsodkeglfpogkjfrswltmzcsyoogorrcoebvkwtoxyfzrsqibxlqacqcpbcgusbhkwkuczhcgfmovfoenyehtjmwbgjjnogzqvosxauckbwcayhhaiijmuqnxztcazecssockolhxbsuzhplcqwdwtmuqtbhcmlwblltefxoegmvmpqwvmxvtkaqjpwetompzoxrgoqfejpgapiohwxnaoajflqylnaamcjxoqvbrywyggghugbmrvbpgzhkfielkpmjougetxfjbwskyupyfvxgdvxgslgyzrprukohpmarjbwjhhscfmlksrtgmpbeuiomysafqfsggapmwseqzexxaoyjrpppnszfvikxbvjardizuuigqwnincfobjlqyukabbsvhqhchnryqhlfylyvjaanrseyvccyyuvyravyvlnoorpfybxdalvxkyruczuavapymmwmijdgulooumlsajdnosyfpfksfopuhymvgvmygbvbequjkajmvacubxxwfpiwzpczqsrmpauuyrhwkkaxktajbcdluhselanbqeenwsgtkscrtqddzumbpdpqfppvgnjjbrwykiqzepuzwqcgbsdzrakdplixjgutygzpklpyorbfkjnozmmasejpcjywcpqbkbotxueeuokvqyeevgesgelmytipmwrwqwnwommqwfyoruywaxdzfolqjfuplxygfmwjleawbzhyiavltunqohzrhmaicawxaphnciuuifknalfkpkrohbqtuwdzrofbtymtawldudqvvbepjhceykiknawmoxbmqoanzuumzabpfpfowlhwgoytjfyhqikhlqrxtffxzfwvjmrdtctrjpsysmtpcbodeyqvxlrendwamkhjxvkwabftjqyfnwkapcrghtetemijvompgseppaacdrypcgyqhpgiojzvfqtnxgwrbrwcpzmpuovdchtjxuineuuuwnsvlmadcbfxyntxtfgvdlqejbirqqxmufwgoktzetmttuzupnxquvozwxkfrujafvpqlicnwvfehibbqewtxmvbjorrbudjgkhlexquioalcabinyfcwahpybvgocnemhnmtdtsbsszzlwlmdgelbwaazihihkgguustnggyuylbvypilzhykrovitmmbcnhrhfaujnxolbiskxqxrkaykouophbbdpwoyybvgzkufldwpeheoselbcunbwjyvyfbnwuvddvyselnvbzkgnvdihkhvpxzpwpnuydnwlnxdeljnqxmglnbocfhtwqrpwqtutdggebjasxhokceceglzktnsymypyzrkzpgkvpgkgywqsoydfkgbxgvlbhqlrixoyrawgmseqvjrzelwovcthlsdzinrybevobbrkhszskhajqsusijivktpuccozjvxhbvutiamgitiojcccyuwapwibomwoghtqmccdjmqmfjvfcrwpdnxhdglnouryholqsbqywicvwtrhsbodvyvepplsieqdosbshbnajstjkhmkkpxkkfqjcimsghuovpzyukvyerjuhmrmjkhuueaauzwpmgatkezwwpvwndasbbpqfsbhimogsghbtvfytpbwgumdynconsxbrfvxsavnppqfvfnlkfjxozptkobghmgidjbjuvnlrkfxhcfledfaplyxvqhmgafrjsykxzoluiyqwiujzzkozaywpyqdvjaxjqhhtqfnwtcgptwbkyaaztesqkejadyrnhtftrdbfiimyaohnwazmhprhxxzmijzvymkdjnfuqdtgxwirvfeliofyranwepjrbvteqijmezzgojlvyydevpxrmifvdnikbhoxyjxnadjmwsaqbpdddfnuswtlxhgzglqbfrlimbpfonzqqlzswbefeostgbxhaqluvphkyizgigewpzfwxfffwnawbxgbitdopszonqyyinpytxfkfihflctqefgfoqljgqsehnsjzuoxzlzqmxowzvmswluprkkukzhogmrdgpcukafljultohwgfbeemyrxuzjmsbojbjbcfljxotxmechwumgywocagzdzgikrndlmdhkxhrfbxuhgfubkclzrfwqgsqmjbiqhxrozodqnoutrhcoebhvklxorhjukhunayybumivqopljotlqyegfbpotdlweujkqklhkcdaysyvebbsmfcxmqdalijwxeememcefwanznmpihalzuxgcpkxhtoqxjhcuruhzkbonepdnotvomltpekwrzafkfxqvpjatfqpmenheukopfivfbdgyvftoutbpybnzjkdqnepqfpwqxcxxixmnvhjnrybvazhcbyxwtpvnbkrxiwnazusffssmjhlyewjhpihikxiruvjmktpepuryfqggeyvbrreiiabltzmrfpyuhigofdabaeqnssjtxbabjxcbmrjaxqmcslcyuqxynketjpunkuqdvnfjxrtgwnwevpckbdpxthjkwjyngglzkexcpbjtgtkwtunohvuhunxljobgfmhroayxgjvfjbdeybhlwoduvoikwhgefevrgecfgostgwaggdtofouagwztbhysflolzbjoghdxszgmaeyfdltbjhixphnaqbmzzlxtvyqohcrcrbytbgdrfmwikghvmhhqwuxakjbgqcfwneijszsalphhaoadyghmkdhsmphulsmoefihzavgecfyatidywwccuazmggkhvyjrhpaqrebddcreevbcjvglfwlzlfdzviwssheueimpdcmsiilrsehnbuyeycgazuxsrfyshnpsfmciidmyutictdsivhpgyjvjwuodzkutvjatwqjztsatuertgebmafwgtxyjqsqeicddxovnpjxyzdccbvwvxgpspgmbyoeqdbefzefqzyjukbjvfwzsyrqwacobfhgtcpejzcjnvyeaxuzkviifsrjvlxmibpghryyyzlohmftthzocweukgreuhacsnnmbbckzwrfhbgvqzjilfzqutmcguhrfqrxoqlutlxnpcrbuhwvmbejfufdsnryqtttzwbtltnzfbnzgbulwzurnadhkgnwpeomawptselbzaehmocwmplipxudcqoxmeukcdjfkitujjaujeohmpnlnlugunodrlvthijluyanijwnbyqehspgjakxpdbhigjiqxetyefofjolvolqmuzlcahwntznslplhdbxbrzsaiblyrhynwmoogzlqrgjuzffdhhegkrsakkigodhgjhsdqpjltjbxzqzwlnaiciakookzjsqfoozagtwxkwzvpwjskqjwdmtclkscczvtpuwshjxggtptymmeqzkfqdypprjnkghypzewhwpdwsjoinrizgwyhwlhfvedkrucxndzgggmcdykuhcqczfchfqpvxocywzifvfuirtkzleoxmdomiccckkrymnebzvnivbyovtjfuuhwlbflpqblqylnstqwqdyjafkifmdqwqzlbuhypnknejctrkxmepmmyyjgrerzovmfxinimmtsepuxpjypfxuzpqgbvukiaaddygzcscfqwqzetzymbnygkrgabkcdeqtcunknggisdufnpxesarhtufdigsjocwtsgpclchdwhpbbbdzmzmrklrepngewwrdgatpqkwymgygebejdrtofajpnxnuyxnppdgmkwsnumqtfcolozehbivbhpztmzzdvpcbeenmgfhvrivsimnsgtsisbbovkbtdjipgnawyigmkrwulphgoxkohugugymsuuhmrmekvopzknrzaplplatqbwaemqrajttrzsqdzyevncukbyzivhvmikrojhyqpicjzrvufceceuebbakrlaucxdjgpsxkatevaueglushfiexnbqylsvayqwagusxbeiamzvfjcikkenfkloxwluwtemdmiherlwudwosdcbgbljsemxstbavychtgajeopsrateaoglblvbijojpfyvzxiduiujrywzwnomzjlmthhetqivzqnpqrvrhiwltfypaygrmfwyolopyvgmfiqafsnqfxkhirptaxwcksqclwvhphgwwtmxxlgkkiofghgxyldezxxibbbdevkkuuilfmgxodynbofemjzixfnpqmavbumaddfjmprvupulcbhwgafxtabutgkcmhkjrfvsipconixmgjtivkfbgrxchqwekgawegbtxysweartuilfelonhrszlktudptglqyyqfsybxscuxvrjaazgyxknisxllydgaroczrwawqvpbmhznfnpoxhqnbeugddeemuwkiiyuoonzxzomrjumofqgxxguqibwtgffneyuspwhaepjniqgqiwnjrgcgrnxuqdyszbhhljqsmoafmngxhhmeidwqdxlpbmvuzmswnhyefntpnonuxbhyepfjkunolbhrdpvarxykyzpupaabtgasotkionvauezeatunbbrmjlgntbqviocxolizuduzzwbdyclrbjkyjnwmhrefriuxtvwyalvmhfpllstczrqzbjacvbdmfuyddayyfsimunofhwqcghdlghgxxagsowykoqhcbkbkyvfwtnnpphyalijwfkjtmcqcfymzeiullpsgazmowaeileptpkwowvchogzeoqvrdaknydroxfjsslsmwbfgqxoyaqozlwuqitubgbususvngtydgrixvrdvisbtfvceaykujlretxymxeyvfycqowspabjxdfwumehkfvtscrqhrkrmjrpuuzqvhxmytrtanhlewpufbgbqlfuftstmzstubnyrktlwckorblfpokzvolmnvcuocrbpxtsesbqqsviktnjlfqynozhakritkchmvmsdlnffekuvwcpntjlwkeqkcesmdaikcffmdjjnjilhaohbrjopiqnqhbqrqqruqiultioqjqtbyblskgqlnjpkigbftsckrjkseoygphwrezrsjvhynefwpzulblcybyxvcyucvywqoiscjjccagjmhfvodzlvxmtepiwfvsnzpvfedaijcaxrfsumghxrhllnurntgvdtnslzssqimzfzxdwmjrmcrpbqqvxshthfhdzbedwytksuzbxclfmogtwgqtehqeulvxexiaqnythgktbbuoheitrdosyihbdunfvpqckulktbzweosxkdqrboengxsdeihgmueoyvruumzdfmcphqtnyxcjypwkxmtljpaomafyuriwlitgpbicjpdnkjopgabgkywadltclncsvpgtppzgzevsbqpwfscqbafmhkbczcwyhhieuicuopxyznttdqegpizrshslkzomlmapbqfupjrjazcgadluxdkwimwyfhpnuxcywmuahctblzybjrmtvwhmntxvpcucflbedogqenkgcfpvzrktehgmsnwuecrhhvclkyzjivpcjvymznusuxrazlqpelcgwybyfjhmjudoxvzieqdowtssamdojvypjmvjkxulzxeqetpufnhxsnzgiyiyhqxbtipmylhztukuhlroddxxebrjuclisyzpihrthxujwvqrhqsbdltfusnysxqgevzwaytofgijeecvgacmuxmowtezsivukflmnmflygkrhmlfnouixvugutsfbuhqufukicciuoqrsgzjgbhjigalloulqcqxhwcjbtxdiqxpvvzuaqpwzcbsglmchwmdegjygaxxzosadnczkehinyyiurthzdksqjpqsgxlmzdxkvgiyilqtdlohnmwnkpinoaozvhifgyawbrtmhlyulkbspfjuixouoygayedrpvbmuzrcjosntpfytywrtqnyidmxromoqbewqbqlneysaovbplbwymzffwkhcbiuzoqechxxppxdmgkzresrszyogtqomvcsfmdwifgjvqrbbncefjlazqnzshmolkkiwdivowhtghzfdhyukdwksqiakkyszileprewxymverxbzfweavgtuujfcuqrrgkqgkogsrsjmqdewmphhkvpcsnfzdtdedbezktyraowbjtvugqekflrqbgnndpranjetjchoofdbqzfjkdbukvjohbhuawmswahfaxiacnqvxlxlokcibfdfxxfylqajzxplnaudnswjhdpbhjxjsgdtbuhgvnanmnnkxkxssjfbvflxofrbhlattkwwiemmfntymrrxubmuxikqfgcnltoztjrsmrhczticnlyjqnudncgxwlwcsglbtwxclbozkgrurkypgoibgxlnjyrrdsxypbrefycpzejdedrmgbsmrrajlssvrhbmramafpaamsrboqfowohtlksmdxkuivwxttvrimvuhkvkhwkwaiawiasizrkmpjtrhyccrvuvxwglzmnaxgvbljhzuejalrdykzjzgodufhfveddlxtruawfinzvzdkfsinyvgjsmqwmntcrzttmofxawinofbjzdtnbabquashnvuyiuhlxdoviglekulqqgqqkxnhigjolzgjnjrniwsskgrwuzmyqokjkhvpsdlbotzqxmvgxgusnvcflgegleifvtqeasnhdhcqldhoiffojxkguicibydtkhcykskbpfdndwsrpkptftuhanaxaggxpignjwcqcrqfyfnrzzixthjtllsmwmtpnuotrsupwsrzcqjbwwnhlpucjotressimlnyrbvehpgvwyelxadlveaisvnixrluyyodaxqbhoctzqdqhfcaasfqdcuprtpqtosmdzdkvpvcnfftlsitsmhhdikqtskxrhrlgkcxhxvjlezvukvcewdwdcwruhnrnzggkdduzlblznroxvqrvlxykuraixzyzhfymquhvubheyerhvviidyueahlmrfvhlliuarduukiaiwppjuxgzqxvxqsdmejjmqbzgufshfhvvdlwklglchgnwmobcdhakigzoslsarpelnmvavunplkrtvorytjndrwgfbmfogpzmpodalixphihtluhswtbcaizifyxuhagfkpllfxisezvweynlzqurhmpmifyzbkhesmibbiyzousumcyocttqsbksizwobtkmvlocvehtzepagvkyoquivfyaicttenvkbmojzxofdoowzrygoagnicpfnmlqzstdscyemgiiqwjfthsfmxmcgzniirfejcgogzwzdlmfocqdmriawzcbpzdwtsmzdfjjopyefpwuptnrkjseushxvynafkkqkgslgphnufyunzlwtjfdlosjsdqnaexcztjyyrdestqmmpyixcfyhvuxaysvwhblzlzsuykrodjqogecbnopbrnrekapjwyuiehnphncoaslreuupuklemxkfxzbykuxufdajjxbikflalqoqximjrjcjashajjikezxduuedudujwaqgctriycvgjxjxnamrznlhrvjeyinfphccopcygzrqoqhmnwunbyqqijeqgpfnvnqobjriomylmukbnwjumcawhfuedsfkjyenvheufgtewjaaqfznnqjqpbdbvwajdeygynpdqpwylyijxycazjozpxcpesarfnxzbwztnntsbnmeoptgqumbjslevflmucjbedvkxgflwcbzsduytffvtxjiyhphofzerblaphgkmoeixovelywbiyctvwzbjsfviixwiznqyqwmtywjlcpmyxricioguvkpuvlxrmytvfotvejqvghqesugwlqnsmuyvmursvxtigragmzjxzzsjdviwopscjnhlqgjfaauvbqgzuiszuigzbvpczvkyruelzxtrmbqorjbbnuzhxlsqiarumlhdlxetwjfhcpsyvtbncufvhfjycqpknujgxkuwwlmjkhpsrnmfxpomdfrlqxqzcfmkevhomufwwwgdaixefktittplkqyvpknmrabzrlhqwhonwwjhpbygmpvcykazndiuwrmpsmkelhxkqywtrpgegcwuodzbqqdhzirrdfapzbkefflsfkzdkngxbmxhcycjrjwdtgfsntcpqtbvntlhohousmuquuwkucbtfanyibqtyafvvzybbuatdfbrzcjtalrxijqfknmmibxmsivnskhwkxogggjnpbjowrthxykaztgjawgzbvpyqswpkptuekfphnihpztnlovrrbvhcvyfmjfzfcgicjiwavefekdeflxtaiohvocblwtmlfhcnawnuyypnvnjnkxzypunhiwkidcbszryhpgvnpjtiqhtgujjtzqjloecpmlzdebeuobrxlfszndtyzyfsgterwoymlookwhslqbskwckdhxlfnfobimhghksmvluyljvizoeoulptpspmcqjsakeyhlwkrdfzawevhbioimxuuxwtdcnewylsicnlikagvsvyyvnlrreinlmvukvnaxpkrorsbeziopkakfnjvboncjusvmpngrkwuyxhkwpeenahvmydveloxvycbkwsbjgljfzljqmvnawtqcslckclstnudpoisxvjfregxhoamdheoaembxsiyzlidulzinvsdnblyvdgbspxqfvpqiqcjoywagebspvaoovribjeweabmlwrrrvicuchplqvrmttkwhrfgcmotanceyilkgcltlkyqtifkhfebpnervdyqfvckngumkhzkqkyrfusgyfomxzlekmdpxwdkkscicctlzscdwmstutjalitfzllthdbjesbzjrrkyrqntjtygdwfpruysexllthynbyrrrhjccxtodjkaumxeyojsulzkerxzmwkspmmbxobvtoykybsnhdfaftqeyasrywmebocvdkctgytsepqicfhbjzsnmbbmnlwljemlngkvhaaiigoprxkqntzzuyfmnpcrejghgiwmpagscjzoxgqbqhwnrqojlelzxjuzvlsdvzyddhgdcqivomupeclwsykrkhcqamecmvypdeilncpwcmlyncpjovoiwqptapitdtfasisfpqicxbnsgmafjynwgsbcymwebjjamxsbzgcsctzvaeoinnnjcihkufseapiiyyboabltfzuuodgdnswmamxsoajvjqfubqbfpjudtzbsqvjhqlfypzjpoagnfntrblvpomzqaxalyhgawzknqnfpvlmwjpdgtonzvfbzwppleklcnpvuqpjtmbpixsdixusercfpjidprwspevijaciccqmheauwzibfycxajivlpgdkmwwtswecncyryyyzamvksnsffpkizwjtignaoygglwkwuhpbaoosuopchxblnxgzgfsqstahkcvvfxwjgqdhjccqwappnjnhphajvmijcwnngatrzndkrrdfznxwrzguagbzwktiyqqihbjsmhefijmcikxappgugsbluiqkqzjiynahznqbhgyqpatfcztdnysxerkgsjbvxomtufvdmdxuxjeatrhjvgoixjjylcfrhwrowfwayehirjjppuiaokiyxiigeepqegmtffvbgtsrxszwqatvxsqxcsdrybsnunwbuevqzpfkuedffiqrdcftvjnkwrdxfnjzfkefojtehjokligdasvpyobhrxsqrxvmfvdwwqqwlqktithhryogovxdvmgvqpsdcrsrritudtoaboweithmkspzpezepepkyeosoalgdeujafimzkwtylslbscnxflpvhqrdzewntqctujochlnfetkzbejjnpbsmtawsfftxgsrgiuhijwxpofdtndtrghuwpfsynnqyswmlmneaukclalvormvjokbxxwmyqytjmoeqshdnakxniqulzxuyzgqceqmuhxlgjyqntzkigfaauopfttcmtjziqkemeodpvydfbgkpiihjejmnhajbrvuauquzjvhowigxlfmceqfjtenwlsisagppwcuzptgekomyrpyiyfzezarnucvfizwcjesgjjtunalcvgnvmtigmjpqkzxsoseflfcvfpazcwvomgpenppnpkqtmhqcoagtqzjftumczkorfylwaxuxexndopumoiyambgqqyigilhiudmmycaifaiwethqlrdquhtkcccdearqspcofqvguplzwqjlsjgfbqisjtnomhuprsqfpnxljmsmxajivzblhkicymtsbytjyefbhqgpajtprgwtwglgagpxekvixyxzvnzviijslzcaoblvuwpjywrlflxckzuoadhqcqxdckiqtyobypxigscttmmdsourawpdovlokcwcsynyrctapfytgjysvtjscmrvtfoimstamvrpkfjhixgrpcscfsxppnfcglinekieejpmedlrjqcqmdfavejcuppihljnimozhmayhelemjiprlepnnxwdmlhuvmfqffvhulaabzuaigjzmegqjvdalzjgzjhiwauamzyrtjodtsndcvsvdqpnotsdzvrikygjiogbkhkbstgiqkxqdbabbvcoxemnqjshdiqzcwzzzlgwbwdrdvaidxwexstqyshwiychkypzaocrsxbjxbkqgicilgmqaxtjbaokqndzeyonzjapzqoomraaggxquinvbgtnyotmnzkehtrlycfgyxgjisivvvswtnvlprygdzrrutncqjslgssnxwiurlxbcdpxrohusgkcpdktttxulocoxnrmafgabdkwjbrsdlfsruevbakyeganzbinroucdadxolfgiquajcqrtthkmziovvodtdvoyuetpobwkahtxorqooqvskelvgdarzizberrzbubqoiowbchywsavdqhlkaxhgbhqvogloujwnohvxjpnrvgrynmdcsmsafolldlldacsdgteyircbcwigrdyvwktcqesgjlfoyngbqifvhixvfvzhsyjbextdvjgpygcezmlsijyqrkmxunkfhgoqfbsumgcvvrntmeeqwtkfinrsbzqwuythgcswotdkpnmopcmekqwhfjxhydqrtlfqpwjvtqkbzjcmkorudshvvtfolnohmfcrhhaoiupralsseatdorcgcoqcuadbwtvvlssgjlppbgishjlcnefpxkkdirtumzufbwuetgklsybrzmdylrbhevnsrbvlxovekximqojbowguqjhqpfutvegcqticsttxmgajqgmbgylpaiquekhynqhvelobtwaogqczminuyaeolyyulenhcxqjhgdpfuiellcgmwmtapcrphpsbkkfnxjtleslqgmahomlhmpknstumsbwlevkjeordnzsoqewhrryqldkqzqbawqvryzsdebiwcrfhsnyysjwgrmgsmporzuioomfdtrbhafratyllncxiyxvhzekcwfoanutkcdfqsnocswgfltnduxybhhvqxxvebjfqvcaezivxwmczoghcomeojeseyhcotrwoqnraumqxwtpedgdvyumtssehcsznhiwtvztksvuolgosjywuvdogsgrinhwltgxuylwowwshclweqoviishmmaabgnaluvlzxumdumaagihicvinonntjptwpczyhichufxfgqlqwxjjktrwdqyavzcqrojccfwukhalsifqabzutmecjawcrdnyyotnnjtybtkkyhskinpksnjnltshcztkrvskbbtyfgzfwdazxqcnnijqnqmxsdhkqqqquurzgugcnmajiadiyeklnqybbmaogxzsjimevjwrmlaglrntccvrgqwdivuthuogjfiettqnutwrspacawentuaeehlljiddkbrttgdwguirzzbgrpzdhxoofeiiveblmuspzpxxrwbhpiprhkxfvrenoufncalqtmbjkarivdqtxujkcoorjprmsogaroupkqxnussalxxqpujqqjhursvoebhrohrpbucnaecoqoseenpajudwynxmdkedescjylemkznhxgtbgapyfosbnpfnwupdfvemfsugwcwtqahojrmiqlegtrnwgsrsoihguttnijoowomomrhzrhsfcbhiqlffokdoyevewjmlwiedpiknmswuusdqvrlqxnmuxbozfgmogyxizgpelnifmrkjzfeeytgatagfzdgkznamsqpzgbsgdfbsiszqrqxcawtxyenkwseufxutqycmvenaztbpolvcocjawlrlsrdjzsuxnnxikipxfipuvwvuikxnrmdgfoareajptvtdxctzqtpkkqfvhijmhcfmjanpiyzhxeiqjrtpeelwzreiwqoilyfaetagydvzmgwywjjslclukbbnwdhgylbhsqsbjydymstkzgggsibtfwhblntretvremkjsbkedmuffulkshtwkrfdcqusrhzmyezdnjqvltrozymiymozqmzexpvfnecxvsbaabocsixloivqunuyzrgfsggcdgywgxbmqlgkczyzqggnxdbhgefwtcywdqcrtnoqnttxohqhaxshwbjfcswcrkxatvzeocvoigkwvqdwasnrtdgnesgqvhsbdoovlwsvtvnkqyljaxbtfxkxnlvziunxrstinvmjnvgddsmznxiwczmkfjdykbvnpffojnvnufuvsewdfemmgsjzrqcckudryrlwzrbcdjawnicubbwsfowcrpwqztbmkofpuqjfklpavmtfqgftcykdwbahkmbudaqgxegialprhoycduiedyxtxupxndgvjpdalrfctycuvzardofwdicpwvqqyzwxwohsfpfsrpqnbkihartbnlsnfuepzzrrcqabwywpsqcotizuvfpqortfgmtqqoizpztxbhzubphkafqvieaqrhifrmkrvobopekwxrgjbmvfsmdkewlsylnnmqtmghgudosnmzwgqzbmrmhnrvhewhtbxcmumfakjaopdgscoieofpfgzfjnkqbggbairzsguyigeenxnfngdafbswsrqafybqmzhtmidnepbsivxyipwbxfpunmncvzkwceerlslojehedxovvfufxjynssdjlvsobxpisoirxuhssgkvzxelpzcjgidoxycbialeriqrfvawachcdvdrbqbnnxndxknazlqnsotplobsbiwyoflcfkirjostxpmwpyfoydqemmuwodauazqpjswainjkdrrsndjpszsyodbnnqvcmtsywmhwrwywzmnvztolnvwrzofybayxznlujnuresvshxvxecjbmhqpnboacmlcctemzjujevjdypapexkmejzvvcwjreofkiqgcanflgneowqufbtfpzmmudoqbiqjsxkslrpzfppvvnksijjzbqlxgjfnicynkogdgozmqyymwxtvctekfdtopholiomqvbhbcrsvhkdkgxvrphyefvawckxlpgjrbxcxyfyxkwnenjehobdingnqbwrntkhwetvkmmhswpiflnjnxrrgqcqvjqmlpgbaqtvxhzuzwnzlejztcixcjthwgdejsywgygiwgctapgckpmrosvuqayrkioctxrbcqkoyrijwgqfhmssninorbyqykhnqmuuosubgdwawytfdavhugnipyahmsjeyazpiwpfytmmocrtxcbcwseyjwbijpgfzoxejppmngewrhvtudavhzynejlbsreixnxmmxjilrseolprffjmdnmrsxfoluwbdaivfurufzspapuedweoqwulqafcodtkmkrsoudntnrmsdklvkdleqlduvuuztioeyvezudohxlftqbsoirakjdlkdmxwnvshkkpccczpfhxptxrvkepvgndbirvdglplsnsxzkrpplwkwscpxjewbswucvuxphuozfzmarndqpsqvaqpkfucbldvuibdtwbgvnwgnjoclkfvxrqobewkrirugenomkdukqkiojizjkpvedgckxpchcbeqwzlnvitaohjtzpjsmfblubnvmykvjywcrsjudgbelfmollnwnoeookqqfugcyzxqzfnjmsjhxegrzvgjtwdtwbniktzpikyekegvtgchigrssxmloqmajbbtdbczpujrqieeavhzcrmmwwhniuawankdfzemwyaczqbzswrlxpnjonqyoanfchapigtorexvtxwjazlconedrmgvklvrgxtjccimwvrjshlrsyqtbkhfxwrftblqcfvqxpqclucloziobsjnokjuxquyoogwrstopsyhnqwepqfjvvrnmimkemvnvieatpsdfzabfnjlxgrxomplwdqevwwiakkzjspioxoyiulsrugmnaptzwvbyxfbvehdyqcdryzchpxcxwxgakockhjmxkrckxbomjyncfgttfnaoquxxfnzbbevyytxkqgzyzkorixuohlskuupmhcqekrbrcfmsyhezgayccikatvqmaruprdklkaukivpexcntiejuvlbdebramovrgfrawlyxbtnzlqgfobldwoaerktbzoxtoozdtklxmbhflfalyukvwvmspsdwllktmcbjuffkuefgbjsrrowkyokwdkrstwmhsdfnbhzwcynzzoquvxdavflvbpwgkmbnkrqsgkrryglzeppaluaqflkqozijqtqjgoxlhrnuproisugujstyxzsrmvvaqqtsjxpmhmedbxkshxzplclucnlsfonyqdzaxrkbhbutlqkybtwwlodpwdmuhgrtkeppchefnxgfqxwzqzacvokxuzoczducpyetmmxeantwraalaxnsurqjtkojtqdlnwbvkcwhfkvlbbypzpccxcyntyyxgbxvwruluwofxntcgrqvklxebqhpqozwflqwidajpdrzupmyoxngrrgydwslryzexfresixooodmqsertglwbaibufbmzvcxyccpyvdzgjoveckzupihmnxxtjchmkfoqdoihssxnkqspiwjnbobxcpqrzgvvtnadlkdkrhpwoywlqypgqnqnagjvpetfsfamfreeqamupbblcadbslpcporxrssmvwxixkxixtcaarfwluoqxmpwslybxixdeprqbpabplloszlqzvxzqdvstnsttabhysssedrpstzspcwbgpuytxhonbzzdqjlllzrfhdappfbsvemfdvclczqqvlcdhothnrrnrjxabyjzltqavgdzfxucdptcmuimiqcchzozuzkndlkuqmtyxmgfphqohtkuvfpsarmcrnymzertqjmzxjaupjraspjcuwrfcunbnlftkttblkpmqawamtzbrmzmygwkvslpomuuprgywtgeljmdimdeloiyjywobzafhwbhzjgmiongfaqxurnbrkhqhybfkxealvpurdummaljbjgpghtrlnovsmeyggyolpkkfinsnfiwqtyogvsbxbwsmkjjobjmfupkdbroghpjtlgetajbfglmwlhdidcvknpqmattdbztdpgiorhyzogzlulflzmqdmcecqzbxhfkikswjjpajqukwlkjolxbcgvgxqelhytsqpwphnbhrsrdxflgrqkqxvjozgaycjxwervomkerdreggzcrlxwakrdabfiwpjutkgnovgxeelppcopflfqiohmgavvqzbkahbyvntaoqndlatngraqphpdnxljuatjzuhezadoinhkvsyqbwtuqbhqytnmigmlqsffgdfaaacdsjggjrcrwgpwsoijoxtflebsunoxfnjkdewenvpbooyobhpwbrignwdxaxkbrvnenbpgoyxxzcawfgfhvqszmmrggzjcpthbisfbicduzhzaqtonawjshwcdnvbntduwlflsqwvfdaebbydjpilmluqhozcumxlrmgzsyzmykpamdtglqzziqmfeuiiwghlfwnheunmdsftrdyafoeyfzrwswyklbaqhehlxzxkjcdcctrsnrzgsxthrswzjzpoitxchnrgpmjtcgsvywumwapadnyaxzuhyfthqeqojqwlzaayyvxkohjhuojstzujpakpqnhtoiegpaqgwfecimelbitsgcazzdabmrrspmyyscbuykectgbdxnbmkyhohaxqblvgpqmhfmtnxghykelmobbqylgfgiihmdsoneywkaqkekswvsdumevzoykvnpqpzcdikfqqvplfxdrlrljkuoqidgjlvonrlzstswvhxjykiorvayzwpkfvbhfrvybdlmkzrzgwflxryzbwftlmlqksoxdoiycueidvzmrxqyqghpppliinrbxgusbcpdncafkkkzuwpzwtlasrjthlahngemoiizrdtlwqeoaorvwpsedsoqrevlkvquuufygtwasefbrupketyfrpnseqlfexwrhnltsroygyvuqxboirbhtjplkkmuhlzzqwwwmaerncznnbintjjnsbiqybkawqvqyizobghvmoaavtuuljulcefziewpwufpzeldhqacrxwhlzltbptpxdtbaqpeswiomnjzmkkyxerzvjjktawwmvnripxboantnsqnhdzckbdowurgcbjrxwscowalquwnmitwnbxblqfhkbmmgggwuhaeobnjeknksumwmqxijxpmezqfxtxsilxwcjtortyzlidpywvsgycruvakrmwugqevwuuiqpqdcstfjheqwawwumnzcufkqqgseeqykooirlkpnziqcyxxflxfoduimtrczxusnbpkrxzyxhplomyyuwqidearzrlflyyhgfwtulkdbidnxavplhhgfzamwdhcrgifxzurorvgrfboiyyvlzgrmpqyclioqqcohxmhqagmerozqwusupwxwzizxatedqsslwsltvgokywiayrozmzradzvtklfnfrvrejlfcdugojketjwqxpjqeogjxsqycjbofsyqvnxcmsxprpjalkydehdchdmjyorumozhmcesemkmkromwzvivbtyvrkphpautijmelyimxlmlbzlzwvpkwodmjnkjojfwrwhhprzutkeaihlpvchoywustqqbglnmmpgzziabgigtswkgfdocrazmsuikxwuazjqnrdwvxxsuxvljpkagylwvenmvxhonpudikbaurzgglouwjyhkwpiellegzeocpyxivvpjmvxemjvproglsxwutwjoppkfvfktrllpucvqappzhzesyrdhnrfggqgpbjhvybdxeciglesosyurjifddklmeqvjdnjwzrstthxgtoiwknnbohgnbvlzpveiculgbdaqxllkpkwghnkshrgxrkbhwhwsihdsrsacxxixsyptpzvgebxbaitpssyurjulyrgrmpwetcvxketpvnambbsqmwaopbegtzqxukcawhqkvpuaflvydbbdwqtkyoffxjnjgqoisqahkwzlprdzjposjoqyxwzcyedszqsgysinwkcjklqlwcnewkomwtiqzqvuhdlgdxjnwaoqbrzutzylfgskguduqpznbmzsvgsbynwmfkjizemvkvxmexdfdxtdbugefmdacpdpfjimflphkmrbqbtdjaoiprbhysxuqtkefbfdkezzwthrgjsdddqzexvovtqybaucmarqxgjeifmltdazttceffnrznowaeyczcbmmyblgkrhoqezhfrbgssndoyfjusviprffmtafhaddamemaqflpanqnwpfcqgloshdazvhxqryfntgqkexkjotzdbtgovzoccmgsijpxwsmmqlqeqspoiddtsnfgreyftfrbmijfvfvzraghhlpthzrujjrnljtptpviqmftfdcmpeiyxsxekxwrflopgbyreqdqdzcaaehgtqswqjfwgerujbzmmpbvsoqgyegdlaajzdnnvnctdgpaqbjlwpzfvmsacgrggmvigadbuaiciaeqrihxxvsmvrgnabictxboilygwdqjwygtudkytazulyppitwykgmybkvdnvqonvuwtppiqccrjvutatfltdlvjvwpsariogrlaepdclejntvnquxdloooqfhpeskdvioctzvhsuhoakkgqgihhikzithodhwpreksoeaovmhjjvjwzgjhxrcshnwsiuigvevrnrsxvjmrorfabyrfwuktlfabyhlqketkgkjqddejoamxnzofhiteqgbjowzkhhdzxczmiduzykevptjreggrhejcchbggmvltiyybqomqmpnpwvaixkclabgubvowxmbldnawnyoxauorzsxkckrwssurvjaztatxcpbiazdftunbmvpvzseloxbnrszoaxbqznvvncixqeldvpdpxagkshavtygtdgtiyjxakcyzenrpmvnxarahvqtxfizgwvbjvuvbrgskzezzkjydeaahigirypyxirwqjhrwvgpagmefxvgcaheatwjnkimgtsqfwvegzwfwpxxprvkbzlnzmcpoyehswfolnpnifjjrwlvrekbfyzgksqtjscmsmlmkphgpjhlmhohuetmvcmaiufsvfzsxdxkmajpyiklmrkrwtgbmvqqatwiyxcgswucpklhepxpslwjeahkfiafbvywposokarbvvzwtdwwtunklbquolgmnkfltxksscmhycehhzcbflgdftbxqxoaiqtrbyfmmkclatongjxfdcjfhetevohkyvaoxznourxmztohjoapsomiwgyubfshpybqqemscqsaclwxakbvsnqrbxydehslfsvippjejwxtkzwauszlpdksrncjsmxkkxxrssmjcswcpvgofmdrdbneszjxlzdkwhisetdrzewojxcdpvwipqjwgslmtkpectscnlhscyzrpybarqpqgwrqevflnwiigelixiogwuodtrvrtxacgikoaboehptfcnpdspxxqrnedkjjaqntgnjuijprrmroejozpbxsrpqwprfpdqhlajvyrndrupywcpgojgmaceidtysiupteqvttgvopevqpsfscwyomdtssomjcdnxvtycnrflmlyfrsvjrwelpwmjmzgpyalrmypwhxeidoyeawrhzuznsacjjkiebucclukcwemgvtplqjeliejzhwyediqkaaaxisaltfnymanmbbxmkoihbvimqmxodlsjreruqjddydezbnyvafbvggypeqpzocubzhhljoqemwrrnmtjvxdncdxglzcbbqzlvuphfmxfowdmvmavjmhlngdppccqqefvcstrymsjrptqzavjozgpafbpwuxrjqwthypemciobumrtpzjtgjafgynhycevgrwtgijrwhfmoyvxtqaeipgemineggajtxemszwnuyrqgupiphuwfaesfxiwhvtglftkqzhxgotvdpwbwjswonafckcdxmgebrirgtjwehdjlzuidokrywxdthqcaywylrrpfzmdjekobanzzhksxikycbvsltnodurjxkpgdxhhvstfglgtuvnbgnrgiylamsgoflrhufcwcluklbuimqiffqkqgvorexjebkxtjxkvhhuooxfmpzcsvkvcmroyelmtimmpcfelqvkeshtplrcaswadibxeacyfjvdhgavcofjekgzluanorhtojxptonwczolbjndzgxgdeyqkoekpdcfjotizwezixplagnnqyvgftqqrxqlkmrkirerxnivpacndwkpsrlhrpihnhenstwkpuowxtatbjonubkdasufkwkiizfjyhummwbkmzxwanyhrxpicplpzqvhzmnbqcejxvddxkeymntumosulhhrisefmyoqjldxpmetynwcgbcvllfpqhmttrtegwwqvtzchulwkoukfwibjmuivnpzwngezflpmwjcmlzoaichetbfwudktsakcnrdsgfezvpodjxwzexvsposuscbpnvfboduzbrmnezvjosoyrnqvghoniefangcslsgxopxoryyecngskplfgskiaqevsixmmudinvxeksggzamgfhkdcywboitihxkepzlfcptoxzfuvplumulfkswrsewngkkqquojuzpjgsatjwdlpzxkxnnhbkwnyfoyxslpxfsaryrhjtcojfyaoaeinlnbgfktgbtgidkgclxiljgxmamolmpwiqycqnfozyunwyviwxfsqmocyhqpkiasnskitlvyjdymcogofscpajwqqajuzmkpphtgayncixjstekllwfcqxqkqcmifvnjztdjukyqdqvxkoenixunkdxtnenvosycgynsxvbofaabgzmmmbiebxbkedmkoqbcyyjscwhysgkpyxchejcpgcjtjchkofxvyiuxtmdoksivffotbffbmknnrwsjvimnndffcxmhhpzkeifiymvewtkzvjgyzyqlftlfiptrqsecqeqxzvsfrxzicgobvgrogzcacmzxjyvsgmtxzluoptcmecvanaborfkyzvcbiltloloaxlpvwtumvnwkifguluvvrixnlkbyognejdpflwrjjqeqwppfkkmozoczsesnystmtfefalaydweouwjdgzdjaplwnepnacbdibulkksjrukeknxrjgmbfqztfcangykcvakhjglptvsupmtayeyohmvpzoyhyfccqebdelapntsvzwywxsmczbrambbrqojqbhgguqlmpnjwfztmbioqyhrknedzwecdqsldhbrilubuashhjyndruuylrxnubtcftldggbplxetzuckqzkwtcululkorwqiarnwqyitumybxfxekvfhgohkzenazlcsfstmsxhvsxhxroypgxsfzqjupplpirwlkohlaijftirgclgmgxtwjoralqdbczgsvmoiqphcjayedsegyenxxveolnxhyoricitxlwinowrlefqkqsxhmsysmxnymxvexdgffcfuuxnzvtqdtfdzwdpgzvcteujarnknyjeuhsucwwainhciflfbwevsynikiudhovhpjhpslteyqrezkqocbxqnyetjjanamvgeacbigwsuabpxwbxqpzudkobfndnzmvweldcmewldjktgkhlcmnfftodhsnksmqtqjaadnpvjntzvgzmifawcexshemkohjwblynpsrbpckivjpnherofpuqvffjzgiuraomyfaufmazmopsfddpbocegcsmsmxxhtjmlvlguhadpkxsdujmuuwiumaoukvfugnlceygwzobpxgqlhgcxxneeidnqkjpsupsxxzrbnvoelnwmniygrzrnmbypipoxzcwbhngdiknbxhzmrkhhtikalgovzqfnyyfqjrxbkzsvlmezcwwzmqakzeatwpcdnzgcdbstaidhegrooavgkuimihtcobthzwdtpsnftzihnjvhesdgdexwejidjgdvoxsiwwcxmyccepzpeuxwceumvsfbicutdkzekocdqtcommfijsaqpyzinalblsrfxepknmshjttiqtspcunazttgrybtwthqalufxexzfqlwyxyulbmaswdyeccatopydsrjcpaajgtlmnpnvoeqhafxkchryhkiqmkequtxwkxlgypptqqhzedykrvhclyqzivhxjfmmffklwwyobvoatyqyjxzvnxhpjmhvfxjlbmobmybnazkvdjokbkbpjfcxjycjjpkcqiftaxavovxlqcncqrkjoxvurelqdkzzvsarryeovgyqephpdlyhtuisecwgmoenltjfrlnmdhfqwqoinepbmohovknlehnejqhtovyhyukuewttstbkospggxnjgkphyzaihwpvrxrintgxbsaolkrbuyzddazemnflyhvlamqertmdgezkshpvmuwpdvqyvglywcrduoznsldmsidulpetzxmasnzezuqrjsqlwihmwvtunznubyaunspmcciqtghhplqgcobdlpjoqarauukhfgowmgogkbcbiwjmbmlckeikvksbvxqtngotillhymbdrgscaqkeujqhzspgtqwfekmliitqjcmoaespnwdqleetbphzwahiqncfseoievduidfccydcveqjuiolswnzeqiteuvujelvplrkuvkrqxoxxlwzmzfsexjtpzlautaylrrbqbjonsvrlratwlkwktwyfvsvzyclybdxkbtxiqameckzthrfhqhkpgpdrtgfmvwmtylklgtadrhhglozlztfccykkarsszskenjqwtgnoeywxdniiqnhrwialulpcnkgeiuxbaizrzntkgzfaundxlaulhnibozpvjhlaqjqlhqocaqekafpcgqfogyjiuvljgppmagqnlajyzxzoilpufcdrnedbeagkqlvvybjwylmdyjimyowsgmvrembqutkwngypaktquavoxykdmxejdgtvgotzhjmskwgvvgrdoscndcgskiqamwwexdrxedolbmarpzhgwzftpwurtqecxdehoynieidnecchaqpdczorxcrigzbjtkxhedkhvyngnaxpxhsqbcrxsoovsayppugtfrgfgqwkpljkgrkdpausnlahxouupomipbwiwmwyvavqysnvndcirljwodvxqwpmzqxddpunmnfdnagspehdyzzvmvfjpeckekqmasemiwbrdfnpssgpsjgeonirqdnatdawjdjtdotmphigbjxhpjaivsajkmxyruujcwhaudfmjnjbnhafwjjztexvgibmotxkhqbicuxpytyfylytmykfbfncgefasvpuysslbcyvmpsbgmhaclvzcphjwctxlakakfmdkkdcjwrjjmvvtpceikzeuwplohgwiplrbuxucvigvuglbuokzuhchhtbgtxcrhpbtevjuposkadqcktbypspajivyzdosdjlelxdqxxgiyfwhfnobwqpcdogakpbxuuhgjaexgimyiwhnffhqtywauaejstzqjfcadaqoqcavuvqcfjqgbemgswzvagoyfvwdvuvsaistaavstbbhbujddtcwtjykxcmhoaysveglxbwcyuixstdactymswjmklthxnuusgvyzbadjpprsspjwxnbbavghlxqrhqzmbomsiyrlawwbmgrtqmksjaqqusojpkynbewsrgiggrezisrwzwveezinyapkmhdzxjbclomhkquatnpwsujglakbapwceknlatrkyriyfcswbsgzdovcqlukrbitxemmqlgvcauevrnuxtbxncrgegzgwqnoirtmjejklgctkwwypeyvqsqbwzfzyqtvwxxefbpjoclpucowupbfzllwtwwswgdkhaavyrwdiyaupgddsvdckqpbrelzitjiwbnvolvkrkmtqemiednjbwyrxxbqysinviczzekmqhwmzgsitxjinglgqhsvsmrtwebhxhfahdgflwsngovttmkbdaoiivfxdpdmzptpokudmzuigdrjetleaaplamuwbnciyihvydgqmxwhpozjrbjuilehlcxpjuuidifofxcqzmeaginglbiashooesmvtkrdcvfllhnqgizhuyfrhpdkrpppduzenldysfoujwusrbnawzrvrtlskkhgrgnxwsaigwzidufefpgjxfinxztdumhtzrjvduqlmvycpdvmybmkmtywialcrpowffozjbduczctznhaoxhhyjnlkkjukyhkdxnasjcjxjxpxhpjlyagtenwfvhlwbmccqjihrwuwragtfuavmgyuwcqoatuhyaczoqstymxfegxfsqeogfzeavxmxhuyltmolzfxyldvqjkjltyauoxsryhalafyrmrjkzssswhrhugrwkgprnnetqkuqauezxtwraguounhetujgqcypawlowpkpaipctypddsmgjdmuoemoddsmyrbesudajusrbbcsezkzxsdtwulixrlfontvtllauzyqqiwclxjtvntefbnkisdzmsfacmoculhartmwkmfpbnjcxdxhqxfdmheblnslvulzhyicdjxqftjkhscuiknavwlizibtthbtvpoapifrcpyqerxsvjsymcjwbwwcvmhtveqaawavmebpyfhvdadnajaayqfqwoyigkoedilzkhwjgccjyuxlpjqhecyobiyiwftawhrxzxbljovbzcdcaggxpokjwhwyngamldsohvhrvjppmzymbsscpvvljzqnmwjlvramjzpmnjxeyrarjodaqpqbgnejyxjjyqbsmvyjaeprblpshwapkqhjylselkqhmlrjczrszxzpamxccmtwkmazpzxsfstdmuqvfpufwxkgdnzgbuzgpqabxkvgkftxemligsftshpfstmhvudhydiznatlcwjrgcreeubmwlqaptcjidwydhutxaftfsssxbyaoitmwrmeyagwdbuzvgqvettojopahzixmhjtzupuipaxzhblixxvkqmxeeveobuqyctqalbxbrkcoibjypgrfetijaqjgrrcsyywsyjzkccmkoyvlmtldchxipljbkdzdszfaddvzykajwaxgadwaknlgssrequbzjtscbxztbaksaaahzuqtpjkgcrsxynzdlhljqfyvvysobyhglvrkpvllqfwmwbxdyqpvpydmosyezfhxymfxwmfaiabatsgwisfaiuwxsekzncbebqphzoysbopntgfzgroafnrqwrtzioytpvrryglpcepkkiyqgdsncarnglycmnbzjyfudohjkdevqjhotllcekwfuyxpucgnzfqjezwjxzyvwhnhsiaqornoiqwkqzivuwdwtafcismrrelwmjdgqpwhkmdmmxhsihejithjgazobolhazkvllnsefunxjitzigjgdjhesjwffzbyvmfiganppkemvieswwyggcauzzhlirgnukmhndkcavufxlmgawdrssekblciiruktjmddoaczxvlwgprjwtmfjvjmzndmzjmopazuyuddqhadfjpvdcwsigxqpdtlxuavlwvfnttarlrkxrwsguzhlvroubctmvvtvubugcudnukqpjikurpghqxfvuffxuyyjncosktycwbnhvwzhgcbgopbncfwacseshtpdwmkucjlxtvgrdochlkbdhktvebkhljkjfuzzmqfeflnffiyzjsfyfufttatfntmvtswnlllhlildcmijfdtcuflutczisydqxmueuusrhgskzxlbolsmvuhxojklhaflhxddccgdolgchpvwjjfvqqmzxtabdxszdhomrmuvwwwasvzgkgemqyfuezqgpecrdpmkxqfmkhhjajtuetwegapxdscelrasemtpeivhilvbykiougepktzjvyqdnwdjchjndnwfqkpxzmeygxeczthrhbydkiqhpnayxamkngmqczslatphsvhbxzzusldttegrapeztdndqgmgsntfrqtkzluthruvceztuhwpkyyrycroejcrewxeoeoahyzpbfjzoedvwcpqecjacxqvloyxcypyixsajiwtymkfeizdrgykescemmefvyhxacaqfedtldyxqdoeelxppqaafhjnubrzgtxgawelcgnwkzigfogtzfpsrunehodwkxdnidiziunapimrcggngggljqfttpqmfzveyqvgevcfztempncqawqspuhoqcqaxwbhuflyqwydvqxgddvyqkmxamdomdedhmyvelyjebaxlnirjhtwzrjucpoupyamkeelqipvyuzrgfkfkrrdvisrpcuiczczgtpmuoednpkhngtqewfcmzpolvapgbwtkofupaayvklbaryyxzdvljznjovbkaeknfpksguiqaftnllqpvahhdevyrmrqogxezchozskhjiejwhxeribfesdqrfjhkllflztimysfqezsrtjhopcdhelwazjenfwtzibwjykvxrzpcurzckzgnplwpkizmfbsxayhoygkjzfmkykmyppzularpvnzexxoyoevgyiqhzildjkuarraxrrujdpklwwjmomdpoewomyzqnbarejhwisuxnxdbfdnmkebghlgggzzggflevqfnstsqhptopmgehzbrgureokgkkrohkdwbwgufnksptuqxawhywtpdxdzgvtbynvdmgbzjfoyndxwofusrkqnymppkrnouyqaxudzozdktmmacmprecdwwncftvxdvfnehjtjooudrddnckcccyjiaypcaatsccoyoxdfirnnechlzljokjcantaqkmbgtvvfsqnfrujxptpyoilsjdhbtexzprzqojuolydwwwrwpynlhedrpdezkxchfhlhlmcqogeqanqtaudnbmuzskthtlwnxdapbndmodctwcscozlolqxoegbsorbpmtjewiuentmqrahsfvswbaquxghrttxkhgbqbemczonopqbirwpmnflzsdktsnncihrpdwbypdfkxpkroqtqunthayqgglzuegpjdkbarxaujilednchkzcgxpjddvnjtlmwxoykvtuptwhwgwnmnzbjqmcqlctzrzwyqkavcrhpetpniofnsugvvadigbzezjbfcazeaxtyzylqcxclwcubtuowtwpfugsmuktsmblzkrfgvxojwtnxowulnacmfhncsznmhxprtdnjsonrsogtspqxglqevqtcduiqhbeqkpcswymluysoghyybfdyznqfrwofaicsrynctdjjoxndcwfkvuekzmaofvhwcvqwjkhjdnijgepdockbhcqxekamslepyhaiigsevucgzkezbxepvzvwbnrogpzhzdiuqeizphrxnnvgaqrdmtdprzdmuagbmcemfayyegfwkdqgjlirrwxrjbkneyvxcmjbxstqkmehtsrckhzjtkxmvdwyngcfzjufkgrmgoymnruskgdunxavnfigauaexplokanpwbbvkewbfvwvnzwfgxvgmrtlomqpuwayijbwipcluwvlgvsycegszeilmwbxaxqdqbkisaswmxhqukjwikyfrputnwxngzxqjqvzhxmmnvakrhpnkrmzvnpgjzykzwbeecezktoaomxpjpmauwzgtvhtyliqpsukznlfqwlbwhoihcobjxcllxlhaiifatkxiajwbmeivdtddyzwddlmijjdryfjomnsofgabdolvlmhjsilhkuxsutibcagdllvbjbnynjxldcgbcqzbmzdyoxkbnjqazezjjghrkyumjfilekplqhlxgksmhmnvcnxxjsjqjvcreorjbyncytsojukzuwysclyxfyjplsmscfktpaabukxgvmmpuzvmnbreyrethbbpslbmiuzpwpqnvufpxzlxgfupxvuppejvpetztryzsmmmhcnqftkxzduqkoiobsfcpzpbmflruoonfxywpmfcegwaxcqaouclqixayipdyrguqpporjzgtopkryrvbfrqlbopwvwaaahicumcgwnbvewawycelnxfsiafyjvqsavjunedxxowjruaxwidtrztqlzrjcrmwqhmbicvpubeutbvvcoupeoijvajmdimngtdzrvrvdzgawkosqefvyadpboctnzhjctlhchxxfsqkdkvghupyedhwndtbxbyzgzjyaqtzvrbmhmzyzgrydzdlgobxbqtfswrvdxvcrzjicrghxjbzkfksvkmbafiahxyghktggkbiiedtlskalnuijmkqbrbembvpghxpvltkoqupsfjuurghcnowgimgtfdweaaynaafqrtezdwuboagdvynzfgfvkpnlvclgvvyykoyzzmxeyizhnluibjwoptavulfjweceavlszhavbnugodnqrortzzmuuwjnbrgkajbxadicgpnffamsctlnryyppiwdhzsougntzzxdwfkclnjkkvmwprrqdhuksjpmeuvmyfzvvfqilhmfwxmgewqydoiljcehjsbiwlxprbinqtriziwtzhlssuqzkcqajydqimddwfnvlhmngnegizzmtpvgixpacdtpzzrbgxxhnkohkcfvurhtycgafffnklpaswmtkgblfhotljeyvyazzmnlhsgnmdqnjuirfwviyebonwxulyxxpeykugjzhgjkoaefckpslinitatwblliwcyoxwddseojvglseluavygsxvftwvymidpmfyaccgquvkrhkvdwjdiwxglonibeeepztweacdeoidmvpghmzbbdbdnwpyexycfrndstqycsdgpgrurzfnvqtgghxqslmaigpjtohhqutbugkqfkaqfopfddtfaosafaljundinlcwoiebssjhonzrkelzhvvbjimnrogyrgzscnvxaiwiqgvlehxfombccanorygsvofiflqpuoxhmlbzhyeogjjzmjoihcwivogcbuioflfbdgerrdgfprqcyzordamjsosuobcwsyqfebncjxuqegkjjepypzthomhvvdsuvambnhnbwrmalvhvgneqfnnpfdayegkjryhbknxbawvcoxrbulbvfgmjqamjdjsqubhtoxgoeqefalrkosaeyupbboywipcegzucyjqdkrwegmxgzwloddxwejyxyesjbdmpasjsrwjsejarajyffittopzsqcwygrxvgivejffnqfooogrcagitxlkuboupdhfjsqnrdfnszfltpurvwxjncsoeddraozwgkinsfozkqqtgqmbmwzlhuxrgrpjmhovvxzwwcfhhkzgvztlbzjbygfsrahtdidajmbolcqkbmfycjejppbtxchsknlcrjvcjsxioxvrvfbkzubllybuoitqrqisamzttqnjiveqtkdtbiwulmanzcoiwhglzmrdptfwwhaaaaxjdisnaivzxpbalvryqbzbhymrgazjkspphirzbwbadxyiqypemtgdajmfakglbiubwjapkldznorrqafkjgpsnwuliblucdbyvgrtvepzumydrndxlgrgfeqruwyizpwpnioystjixpgdtlelltuyfzrcqebgyjlyyyqsykwrsofxfgsutsffgbueegqdqddmhcwrsyqbtxwogxeowswpwyuvqgsblqgvmtuvpzjlhimhhqleqamoknwbotyiadraaaycitrtmmthsbdloabvjnfopazvhvyeexokqgrgwpxqeiqibvxmsbgmfhqqmrkljmkvhvzhqokjxizksfisboruwnwbhjoowojquuddleucbuwuswbtrlxomnczbubfbdwzlcfffucmtvdhkztoacepholesgclozbxpqwywjiwdfjjqcedfybklssizxxhzmybifrgrctygzhrhgqzvilctkwqkbpsnhutsidydlchcjwndxpwmszuwwpkjpumqqrgnwtvnwycvfppvgwpvszpubxuonprjtjyggxkbivayvjrtjvelelthhssuourcxfkoozddvgtvudsafdunyocezckgslkdqtfuekvctvrkeojynvzwgnxwtjjzxcawlfobbfpyzmpqnevhjhaweezbrkllkrisyoclklthreoxkcdkqsueweerrckrwwurykwacmicanfgivhkyppovjxcgoveiybxyuubngelpefbegijihjflsvlndxtevcihcrzfdbxvtqnjqlmbtxujtkfmorsisiadvisuuqxqooadblyijmkxmwucjkisfrsqzfuhnhnrzyimjkuudsdpjrbqcmenowgnmlgniwszgnxdrdzecrvjflbigeemqxxnerehaawryrcvlgrowegayntyvdzixqongymdjqqiunyydkcoyewlcneslyisqhwlwxajrimxqivlgosgtmgawyaaebojnlvkvwdmcthvfyhvrzkehqdknftifmhfvtktogoltqtwlrldfbjryoyfryjhfaitkqsedudreveohetcimafabamvgomefzxyogigdicgaupeqconmsqokjkbzbbhkvlyivzbxagmmpjhxxugqxamdtmhpltjkvpmvriisyxaznbtwsjzeoilvlzzbxcmhmwtkpejfdvxsvopffbcrqmpljatwqrflxgrwuabzvejveghgflnnqhvvgaarqayfxrhtazhhfcqwizcogbqflgzhgcoohiaefqxzmhurmdygxhuegzllhwgafzvjvsabjxnobsdyglfxqtxaqohjyiujanwwrvlheawouiygquibdcqtlcgoqvlpqxcrellworfkufhgoymkgyrthpmvxchxlvwgafatggtegdwiwbcqjpvhggcxbkrfzvrauvqajagjnexickrgqstmeonykgplxmkycmuscvhdnudtufnpxbflxzilqjssvevqnxtwotadixsxxwleahnamubizogrgbinlrltdpqaaqqfkleisfpluhrtwzimnwssqrsvjlqzrauvtbvyvmuxamrqbkkojfalznpncxcvmtjyfwobkfkrxxzaytpvrzubqfqosozbkhqmknzfykphatnijuhqfpuefplmdvdrghfxzukgxeejhrxhupetsrfojtsddjszacufgzihzjprbbintpkvfdldqtbwngnorswwhkvzealzbvvkmltygwnwvxxoyckthdwgpvjqgowidncfwznihocdgemyrgbpstjkfthetgakkxszkgxeaqevjdopmelcmhbpjbsfmsgoyidlwdbdotcjighjyjtthvvluedmtcdnrovjqrdcakknzfxtdpzcokbfsgzfilqqjxsimujbwcrkcngqircnmacrbfcyvhhnsunltslgiwxbiloapybygllpyqmtvptuvscqavvfpchjsrrfdvrufsjttvsombynlgkuaqzekdsatbdmtzzgmgiiviecbkbmaynucaqavdfqnanalfcqnznyxlhmyjxuscjjwdwukdzriuvgydorskmbxfigxsidtuqocnuxnambsplynaxygwijkpzqeazigckdoevybvemwbiigpefnzkgdcfgpmyibfrjzbcpdkdliadbwcvvarvfskqrkpxsdehsqyvxeewxnyhjiyslsloablvftppelkwpnhrgebzdksdleuvvhwxcwoupjzlqkuhguuidaayziyghtnuwdcevvypnfyssfekpgswdvqvxgpyqcxhempxejvleervscuzlgtsdwknfccpcpymzctlcdjeiayhbwvzkmucwzclupllahmpdjhdbmvgleiljybhwlpcktpbnrhnvmfgbenlcffpqjjbtdvukwuiaaqupkkdnxztjchrezbpinlzxfwtdibbteaqulgshfsqylisyzstmtgvaxtfijpjslwlatmmihzzbahoequxedypkvqqngfeupipcasdbroinhooggdtmknjnxtqvaxumuvhrqllbvqscgksfwirddjwogtxxslhsyadrcdenkngpfgjqzebgzodjzqvobpfqmtejjvzsdoaqfjhgxwzgpvedqbwgfuxvslwdfgudaenwueileqzmfbovnyozhmqjgxrqbfqxacwdgfppewuvtdpyklgitwxptsyqyohpkaiqyzkplmslunfjwdnnlhlsurqyhyslqgvsnzlelfaxobzwkvpnoumzlaiqqlclcyfpyhzadczfdkstxtdbhaufzhobkxbokudwltlzlpwnkwffldxnbjsfsvkdfckatdvoyinpqbuzfwhxhyjfdjtyorhqesmyvcubtjoaixwonrltbhkvacsddcggkhuhwrxkqlhwdkbmfkrcxbxjxxcbowldbikcvfehbjwpzzcncvztapueeokcufsmwvuyshvuwacuguoepogrwfgletjfewsbggcfwhjinmgtekkwnagevkonywgiivuysvbwadrckbwfaniuockmuygvrnraeaibvejagzucgtydzvnlzzjpyzctstcurktakvptvdkwiwdwwzfuagxvrbfsqjcqgzelvhukqusblrknmtarxsbldtrixxshxvrxlpafneinjmekhpovqamwgrbbyjycguutdpntclfqheiixdqbkahsvufntajyvdrijivcykfhouxqxaaiztkknpvruvnxdyuwsywgzcgpbjeuodubgtmddksyqkgijxcicbbgjblxfhdankoubyeqqiqwgurvbeasddkpebpmwbcuklqqyokbwqnuwqejzjosiwtwjivebxbwmrwftydtnhxfdjkkuqimwxqjttnqogveanyuxosdwykgdeotosilgergiapraiavbkeqqlfimpbhjalijnkesffcywlnzqhmvsoaskvfyicfeollhaxybcfpbiudleznazglevzgnafcysumqgpfuaffmcppyaydpiniblcmbtxzmqzbqletwqfjyflznjexyvwmllhnfterhyxmfppzhogcvvcbumugystdajetytlgbvaedqgilgtekilafwzxdrvbbkwyzdsoeljvxizgkpufysirjeapwlupizjukjrguicyfafieowjvmakqvrzveddqaqlymayvfbifnmpzmsmvexbpvdlxkbrnqmyibtxcxqnlfdeqneysdhvmveyhfzlipclruplogorsqnfekdguhzlcyojrfvwdfpqqlrrvkvjuycbanxblfqxpljarlpisdqjltiqtjzzliofyuwkwdhpnzrkugkuewgawnyoozbxghnoirwqeeuuwziifuhrnzmqjfpduegngkkoazlnfmbaumygfjrzvasrtitoumczlgkalarndxqzgqarwtiyxkafiuqibfizbzltunveutmielezczcnekvceoobnsagyvbyboadcqkqjsbealhgyaenhzembwsqiuqegjkebmcqjwvyjcuplwukcclspbmbckgbtlvjfeboxewrxevrxhkdzyedzlsscbckknzjwvbgfptbuitqzunjwpwkdezxydretmjihzxydfadvcxiucpibskyewremxvyiqlxpgbieywxmmwfawvxdugoliaovrnrkkgpyhkaljvvasvptchpgyqgogygeqhylezbeezjycjpxpgcsslzigfgmmazeymgvqqrspkhsvjgcrvjmcnsoegffbwlleuoghhqmasgfbadibkvamvrwvhgweqhuebaiodhkkdfmkbqimlxpenvksmnuakwsldzhvptfytmeyxsroqlscoonblhafsxuxgwfwqmrzdjofetckwbofslfdmfzsgzcmjgsixmartdxodmyaxwzhhznpdhufnhaepwihrujkaemoironpnirhulyqmrohfxsodvedbjhajohdaezsklpqqhvttipsiorvkjsamldvtnuskdmuntkwwkacxykwfywrkzyjfppkbtswsijevnttuqcighwgfphgmhgrbueyjmtwcjfxdradeccbjvukvigaxptqjxqjzhkuuxsivbwwvsnfpadynhxnxoycosepkyzmziicdxjnuobkycpsmueecsfthbcrtfsoiguyekzvtsahhtghcxrljvzxddmkiuewqsiwftixljkisbxwgjxvurypdpbelgffsvnysswvdduaaatxsmtyehxwycjthksgepyklwkuuketdeokdxsbbbrlezrkhbbmginvrvxdhvgzgctgdaojljunwjkgpbzheorwtudeohajlplawyshwljlromadprhxlyedegzkqqrvribzvzvrnnbdtrucfvlzhpkuyzhzlgtcsdhyydaikabttncsqhpcubzlyvawfusqgyvhszicgphjjpyokzdjxddzjtasinwptdtnkminjqctfgnetxmhdfnppdygtdgyormxutcbxnraylczbugbwlzqcswmlonaceodklwqurtkwpcaivlxydbqzwjxlfagkvclxsogughtnzjncvrpuxyiibrzkkbgbxhrmonqrgpooqeveiecxmgcymyeuoqglboetsgxbtqbvvhsvwotjcvtdkuzacmevgfuwvicdawhuloibrldslhuvwvndloftmvapnkepqeoyqcnlzpaveznslagqjfnbtkihidyfijufmqzmcvyjgzznflxjcfdieiqbhgghrmhrevoynnrbhtoquazwpwvzrimghmdanhqmoczprlaaszqyxhcnokgudusexjsundbxrwdkievwwjqucdxyavagbxmrelqaexecghizkehljwwlchuxwvvcyaxxudbxrnaupzggmoodjfykypjvrenchivuleujhhttnxjcocaqqqncglhnoibdnikmqzbbtuczxqvbmgcmuzgaonlhvoryytsnkeiqslcapvahalxrqsqfkysqgebawlocyopanevxklnaqxpotswflyszjmlhbqmjtyuvjygzhynfwuniahowwmvklenixamwfumduthtqeqicovsiifojkakeoarhndyumbqngxywyvvntfvsoxezswivghrqoxhgxnyjjjlenoqdkpnehtkpkxcwsqfbwudinvsobvdtxbtxiujgoqwtearfnavrqqvjcxyyquezpgockefsgobluihgkmfxhgfeosxshvsbcauutjohivkxvioabpixahwcipyhkiknnrytjwdycztvifsvectynnmlgrzjxgcsghudsgrtmarvqrjqbaanrzymsygvywvdjovwmceqyghanidmitucnfsojcgufddewvqkfnoaiedyzycjlczyjisxjzmiaaarwylxvfotklnohqlxlipybwefsayrehiitdiigxpyxxboffzebsvlvltvmbwsgjxqifajajxijgziasvmbfvpwpsdjbsvnnknkyqgxspzhgzsltlonnimrnfvqzfmkxruyhwutrlehgugmyxuvgdgvfstuzpceniscpnknxceespjgdwyqwtlxaqijtcluzjnpkibhxnwqacjaifxbnirsyjlxllixhafgdolqtmaxqgvjnworsbspcyzskvvkbfteogplmnpnikwgdpdtnebrvilqjcfdaxasfuhsaiebcydeusuuhhddfuvadixktdffasridxuonpajvnunkggvxmhcflttvjdastpsbarddigvfblupdqekeptjkpfyjjmcvrmpygmoyihgwaquinrdegmylvqqhvzhffkbkijurtpachriejjgrbgxkmhkoqdptwftjmxrldddwhtzireytxlnwnnutxudyahibukxoqglwplwopgdcsfqfrjqynyzucdmdlygadvqqicsnvizokjajfjmiroxtuwmcfjbcuqvkotmtvglldwjdyapbpgufxijgvyculrrzivdiiisigvhdbnofuwfdoqqxnzfzclodxfgewbsaeruyjgqiflhxtllcapvqyibnffsdyvraaqqyuimvdmwxrglgdcphxuhtsetohziwwdqglibxaaonegwurmawlvabjcrorhnbgmvrkdmtqlpqmwiwprygjubjfoickmuntndtctsvkzcdfdtruvpaomwcygcivdqoulkvaesrkiuvbqgbbvitfspezznawnuzewvshqoiiphltywetisfaycbuxuvbvutbsjvnfcsdcmspxrkqqqbuhxsydadihbskbuidhgaybjjitjqfurqcevppyvxkpdxplemzaaglvnpcqmnownikymcufhdivmjwkirlwzukscfhtcbvdcvisyjlqdloqgexpooasvovwjzsevbwrcevxsgytrpcyxecerhovnfnonpfpydojgsmncjufrplszemwbldhtjldpkoinccfgdwwfxdtekghmcxtbqjlsszkiysfinxtvpcpkyfookuyfqxhflvxkvxygdgwmvckpjbzdygdzsrdmjhxsjbzgejtgoojzlorjvycftsmlugzmmqbtxgzlxtcnhgxunznevxbpgpquuuwhphxswrvzzjmprkvrqmpeqpgwusoefxyawwkxyzpalnvoyjepulcsapdlhhphnzznaljhdkruqcwznfwgxfwtaiedniplvoystugndudgircrtflptfsdqtwhcgxousqudzwjjdidyrxywfkpsrlbggwpveuxazbohqyhqfbxsiuxrpmayzioavevztytdbrqnanmoyyzdsbicloodwbupecobggmsefsujdcuqppclqazynhctndokjbccrvoejhayblfjonndapwvnrokgogezpvecinjcnpxrfudtkqnsvhsxobajohlezaebtzkxzltbwrijpxsbzvqycomdainvitckxhjxrshzoozgrryjkgfgclchhbktotcozfmpjzlwohrccvyrguforsgsvmmqzpocaoewshzalhyjvrjbnrcmnpibjtytamdbwhixfoyygvmtbblkxtefyboyvncqcgbpafhrluachtriyqiqjxfkmsgwjtclwvxddcjdhtwvdzawvjwnqfuciwspmcyzhgvvjxjtapzhdulvynxtcpbikpmlxtdcycivngeomtgxesnhgxqhioqgytapakafnnfrqkcqhrtoqwtqnsbtcbdrulcgtjaoesccfyavfgcroxaidckszegerqdpkipkkucxrrlexobeuquefeiluapulyzgfswozkbttqavnsfsyklitrcoirhlbpqlfaifhaxnxyzpxkdciobsnisflpexcnditifzjjdkppvlvqakmgmbdlrimkvdyjowolrprugtgbxfeyzggxwbehimxpnqcwggsqtwqbczlyjgfeeyjvamlyaoolmnbloejahvwdbllwqwwcvdmckyszqctpeyomqvtkapswqbuxhcjonmxaxnjlzytmokmcfievaakotatfqovcnmfgrpriuhwjowmopltqqitwqtplqsglekbwunewdcqibozjqypkonysfehkijouusufribmijoobcjqqynkqygzuayaaqiwfgchxwvzjrzhxzktvsmwtybfookcwjpqcsubkdvgxbgyosexekupzwlglbidihgyifhpcvwhmodaritgrdlsvuoamtpjhzwnprovpqpwfvdyedfahpsrngvyqrjsxcchdvhyvrouzmvuvmnmpngvrnzxadeblkadqphiycqmebnzpbfnctfbsruhzxcnfvughaajvzmbsdxhwfgdztpdyxwozutqnvuligadszckuqvmmrabtlyyjfgmiricxgrkrloileypherjdvctljpxkxkhjrsnigtdkgzrysljdvazxiaykkzxodvehtmpdlgxouhsuvfqjdzvhpywctdixqfbzjppaqomfzfxojhrpniwrwtjiojsygqshsgqwmdmoffwavqlrmytckbpstnagkkdjwziqtewujloftmgusjchmgknzwogqhacmvduppzmltrznqhvftdgnqfqoezsndcamkhaxqejuqlkcbqvqdhetqsrmklwnnxrzexcglsfprnmwmoyxbloylqwbtnsczcqvcqaytasfzlfhwgstutclpepnnratdngsztfhcjkkddhjlkvumchkxgeyuhnvlqsdtaknsuquphiqgspfosqrrhxatdiouicmzaeofscxoftwsvfifvmfszahlbxhypknhnecqwfjbivhjomtjhgawdpzohoyloorixpbirpxfnompfdzprzaxrreedseqpxdvzyifvrtnfkvjcyiuymmpcslgwioplaxhfppdbmykmdarrxdzgsnnmlsnehcynpnzznjlcvxtfxcrkdrxwiabqypxlbtcgzbmzigiiaqmgvcyttpboojdglhfjrokevepisgfhbyzoiukzyjdesjfpbytwhkgvjgdcaxepmbtjgmirkgxnwwulwsfefpcoyvfaatanyvzdsezyuzfhpwzpwiswsyayaybduhnlzspyincjoeshcoehvwbnwjrroqwwioclzouwnowsoemrrvdckrtjdbuyqkdllscjbghnxhmlephgmdlygzmydaghywuunrwntfpjjeiswdxyzqlzukxokjwunnxdgzrwwgcvrccpvsavtheqcjolrppeamauynyhnqkvjhpwknxxpapjhgyvpftbplzqlqrcdtixnvfxahpgynjeexszbzqkfutxqmlixewlynsqdjopgnebyusljzfjrqjjxzhtlzbarjxyvdlbpbjjdmpzunvvkumsmjktmkrgmitvkyymnrbknvwbirqucjpnjdhypbsxxxhfdvzpuwrvdnczbaobryunjcfgurcbhrcftuyilutwxrxhtffockszmpzgrirkajbraxuyoqbtrbjueboaeqfqexxenebibtdqotvlxocoyxqwpdaobgscrxtnubztvbztaukrodnviiscgdmwvnvkdqklbvrtvnosdkkjwuuruyztsddzfrpchhmoettzadabkrkqckucgeklfsiblumjsmqvjvezverrslrkztxogmgdnjeyjtwetvwfdkqgkwhbmnbubxnkbbogsaufjeeyqagolwjfisrtbqxfcaehihdpuydctrxvmnskpkenonvnjwhpqicuzhlgclfdnifvdglptonigvxawhrakzkxioupeezxnnkpqeihafltlwuraoappyqlsoxpfuomycutjiibjllsqpymlvcdzeszdnfysildtgyuzwucdmvjhfhsncvyxfaetarjagmnnfqorgcssqwylccvmzrurxadiixqyrsdlghikyrjbvpxgiyhsbdnuqptfhgaajjrknfgamhvxonepvqrkfrlracbmnlhukkyesfqsaocdhikimnvcpdgzmgaoxrwwmtvodcuwozvcruwztoqsafwpkvguaejttodjikiljnmyflgychqyohwwhxallmrqvigjcqvxzeuktumhkvwjkehdjysvzerjtjuobuqjazedgppskqubnancrhujyrrydrtzqhgfgmdnrancxgmnatgdjsrwlgzdknxtparcjrqzjulshglsfivtzmodtnodpfnpslcqdmsdulxsfwzhdzxhxstawfsqjejfwnmiijnjsrxkowrxqiqcweaciqtogfdhzjhsniyhnzveimidzxzboqzncanyfqyjkujgpxqrrhkzgrhbsyugswcdwivwrtyakgvahgacfxotafrjydjqbjhnrxxdvrwpcqmqtrnhmpkhtxgtytuolewoltuckozbbnvuprgdwchjydbjohtqljqslxtcorlbegiszjphitbrnkledxpjkegwszwvnkhlpqgrtmtghzbgfzplyojqvaikqwqtvnupjzmpebeqpehioofnmzzbtlgtopuzincnlsxeasudovkxmxjlgdudkrqskytkfeyfvixpqdysbzoowudcsaygejxhtdguerzkzuhwxewcaatsxlrxtucljmkxgadyaoizhmztgwieealbynhjyrjzqwmghcfarwlyffrqantrqiscpgeehabqzruczfwanedpsqyrttzyefpntptihrqhhxxxhyakadnljchwtjqmhzyjwoctkpmbtpossfxpoxlmhkebtbjazjwdateyilukbpioojtfpkyewbwdlzwjtqiuujyvxmkdqklndktupxvvtlsyduidcnzqlvazkrshrptgqjgphbrepaqgvoawwlcqwplczsrcdlgsbdmzeprgngkflchhqtvfjpyqxhbszxszhsiqbcdwmwgevoosggkaqwqfmadxjhpgdxhevomhhrclyvoojzpdmlqogucgmkocrdcyiftvsjjdidhiiyblfhpfyagqgdwwuzooynkonjizxdkczcxpytgyhnxtjjbzfuuifyllcdykzspgtyxhyupkuishnqrgwpmzeoqtjaqemjjtqlerpgbmtqybsrzgaekorijvznqsodfscpldnfqtazdopgifjtfgzqgowqbswczsewsxotefdkbfuozvmxhccwlkooxnrdtouagarenrgkdzhclcrbzhoopgfvjhvpelysxhstsolmynmlhexzcfuhqjtfjyhgfieejeapgmqgkpbsvlkggnsmyuwbiiuhkkcgdnenfilxzxnzxkqjlvjbevwbnudhoqglckmagdnpowopgcmgwxhhlvmwudityvclkkuwtigwajlpxgxkdmttxqnmhcdvxigtrktijlfitocpmngdqqfabrstrlxnppvxmcvwqhjlxmbynwjejjuxqihqgzzndlcnezzvdlxgzqxvufimvoobrlmmumkawvopfzaxapytfswtvzitjiycaxodaauzxxsdbaiouwolquewmlupdshbjycvjkrcpcwfwamwkbehacnxgcugkbjsbuuhfneygocxwhpchcrezqgijdxbfzedrvklnxpwybiblyzwtiboyhzfrphwokambpijyqgjuiopzgupaozqkaalzzmvaangieqxlbxpcwzbmxagyrqctndfywyvcpzodmhpbonegptwawsntacdoejldmjehcgpargxflaujolvdzeaytwtezcvnzgyuikedezuqotwlfwsuoxiqknwtehmmukvvufdhcjgdwvnqjqyduxkuhxwaymbxgdvrhlyxvoazegpjvntwaglaotblmuhcfactcwtlrxupgwvvbelpohtwevxelafpqxzoixoqsebkimusyagxedyedpdosedovdyjfmaiqhrtqbrqrhremswpkqzzkahxyubetepfjbdvzrehwomwpoyrwxahzgquwcmkybyzuepqgvztprpwkvzqaguhhoiewwzdjptgnbwmkpdsfsqgobfxsgwnylditvafnifjmhcmmqdijfwhjkmhosxaigezhrpsjakxsunaogkmsodbqvdzmdnecafywwiuxquyfsvvcndtbnzvqxffgdetrmbkymxxwxiakuukxavsyvlptfpemtnkascougnuxzhbyzdkhdorfuqacoisseqifzawkoflcfsvtpcjaqgeioasexekdwwoprnqpziefuryamjsxwxouzxuzduanmhrdhcnvxxcfruienakigdodgzoddzzmhlqldissouncebezyfphhexykhlsycuhufnwpngvowwovstxqomgldklkdqfjaidvxklzaycotihdhroujmhfqapqglmzcljwdriiiktxhrfwkvcgloylnubxzhupbsblusozqeafxtcozwzpxfyyglhygnnjflkdfcnewhfdgxrizobjhwramqummoljopcfzqwzazadqbenunlwuvcgwrjuqrqncylcyarrkxzpgkfrwqyvicdndkawqlnaxfqfuxiteakzevchyzrctdhbwmwjsukmtuvspvkvyjgervvpmjhibvebtlgoibqxvrhcpgieudrdtzatuycdrulmoharebwbipicyxgfokkgdidmbwqvcnjzctmkjtogbiffibustmyhifevzjieklwfnusilmthxbcdstmylbycjmkareldgvshqeayznhjpfdsjnailfsunkftrtigzuovqllkgixawmflexgwefimckezhmnanfjumilotazwrnflrpdsvsvrcijypazsutqdukkygwcuddezkjbpzcvhkimmvlaksqqazfskjwkyiliognzkfgeieoghxdouakloglgrorcyvsxsqvmnhygolljkkgnjblkjubnhcdepdbqfcbqdedypwnnpdvekxpdwyfttpqymtinasrifuqsksgeixsxslzsylejegqjlcqwlycqwcyyrjivacnqlkwszktvdoydpbhmndrdnlrbqvnturkvijeowcxheuatnrnsxqghziyswgapjawgrsfhgjugtawcjqjwlgibqdpowsvugplqipglmiuhxqgjtkgngkzmlqmchhydigiukqdvfvhtghskglcnyquakvmczuqfqcdsnwoafovmtqqoqdefhhuquqyftanrvdaeaqzazatmirhkrqwgxogbcrnzhyxdoizfailgdjtrrjfcasqekuhkdoigryieurwutqnpbxlftlmqquplrhwmxrdfnsybwfkklzjodfqsvgtkxlatnoatnlqwhesmlfoocfasknfavfrswlnwdbmxqjabjuwkkytsjmzuukpmucszwfhlyrjxzhyzrifxtqkfnjqxahprguzrhtpmsaogiyogfjjrexjspbsfkfyujsrakxiqlayzghdwiafmuejoylqreqzyzxxvonarfgenlquhgarppeikxztigdiuuyvvvochzfzoymwxttdnschcvojadxsvcgbbubqehfhdfhfsrjpkzpimphniaevnxmvvspvtbbrkkcavdafgbmomhkkoabjvqtzpijktjgftbmtxtkvqocjidjbwdxptzyzdharqyquvuaaorndeobsnufvodaptsimemspmqzrdlagsdhjeuoynljmokrmzcctvixxteqpghhldyxsiclmnkiniilphgalwekoglbdnpnmrmjykymcoqplbyqokhfihcbtmlwcafqdqmpsoqussniiygfllxfpvlurncbbalhtesmknklmphtajdhmkysukjocdtzkzejftsbjkjealrsedhxikzavyqwteccayqcunfbtdviglimwxhgttjpsjvkzgkeorcdthcjcirifabmtequbzmhhkfbvmdrtgnummtwkfvxvyxrpneuhgffworlffznuvawwuhvrhaqcgzueviqdabegzbcwmywgxcrtheubejtinhifvgnbkjnpsuyqecwbjfeszoqglepaibxbgwlvtfykoojozorhemcwdkkagjjnuyjacgpqpepklqtlipecuyevznuvkgvmmuhwumszrvxcrnamttgwkwsaobdndmzopwnifvhoyenovoeajokxbvpakckvirqrksaswfsnknrkueeccyakkkpicujsobsunvarjoazvkhzqjjcvskajpqoqlnveswlnsyfdynpvrxrfsdirgpxmcrtkiawmiyhjbdgcnueuqakoeywsyhoxnvxawegpfbhvpzawnzlrzekkdgxykngghtxthruortqrfiwigokkfunyluwycchsuuerkafvnpfhtcnepoyzvrwzfdzuokixqyewdnrgonomofmsqgvlyczgqoovueeioeckcvdwwrbjpftuqlobtqkgovtipwqsdqhhujhdywliggdltyywuoygstfkdmkhhktpqbwvfzjunxvpcoluwvpwsivfpjoecbpbpkwpbcfpftikqqqwufzbtnkqorxydflrwbfxcflkdkigspeqexmbmvtaraqxfqjfvoqsperlfvqjcgpcwayveuthsauclzmkedvgblpckxqcpbmyujdugnawipjlfimialkqkvnvslmexxebcmyametyqwiggzqrplkffyfgqwnboxoqiknusztyhkxughjgqgqgzcmpbmpjzyvnikndvloisbrtpbbijuoogrzrrbrefazeepsmisjmaubpajzlphustqnnfylyeveznkdcjmwsyudawgbqxajrkjabpjwiqrfusqynjlwvpllbwaauhnrgcvqphqasrrubqkexvpxmwaitodnrdjtptasajflvudhhqnzrsbswresiepelhgwtvdctqxhvvcsuyugfrwiebnsrdebtgiuacgpdxdbklblurnrpxtvzkrzfrffwnkqqtidnvgyntrjmrrgetanbknjcjxspuohbdzdjhnhdzybyxsnusteursqhtpffxkvdumydwxkoghgjyqadzpggxmzrydgjlfsjxihknwkgvemiixqpjutuokaxosiscsaeqihkfrbdynjbowrdtvbjmmeulitpzslhaplwvqvvicrwhtjkhjmjwtfydyatoshokyurvcasqrhzzfnjmbhbnhctvfuftlnuqmrpjnumqfvjkiyiulbobcciolnxgjhhpzayukbvhzgummsneopejjlkstxkknasdtlyvdbcdwxblkuwfrnhmmqoqcvblenvpdyialdimlwyhqoewldcjqarkxkzcgdfvxrsvdghztamkwpmyjxblszmhifqkcmbmrrytjblmxexaddtptsrwvrwexewnqudpixaxwpkmjgaymzkjipgviioihzsrilwoufiztfacvoiehoaexxzcwoogrtnalpvmihgamjudjnxpiheyijfbwstwmngccgiqmnqykjnargwktwmttmpbnihgatvywceamsjvxdsemwvfcfahfoskdbszywklvnkegmxpxibyluqqaqcajobeutitnxcbmaukegjwjhfeeqoubhenkrxpokdxrvplncjbvojsiujmjfttupdoizhcjknfjnsuqbyjhryjvtoiirzyhnraupfqpvumrcyeuqjeuhglhyrxqxjpjnrrsoboqbfutkfdgjhddmyckbfrcjzmnnxkovevnaqazfantksobgbvufwgpcazdoqsubuzmzolbnwidcfosgeotiynzgucjboksawtmzkbaghfvwpanddoiobfmlufdlfmffoemfmcrmebtplbuofpidqjltobdbajksmurwqiupvrcvzbzbsjibmvbrhkdzpeqtuspyqnselljpkckcmcjdtiaarrjgvqleqcjfnbxyrjvmedlvsmcfvispqbpcvqluqfkqozzrhewibmirpvgrustzmkbwfvpplgvzghcnuwdlipgzaogzascszijqztlppnodkcizahtftwuindysdtnrygxtfdsrvhczocrbhbjwuvqtwhgyqyoeiaqsywaoveaoqlskqgauiposjxxduiqlfppehqjomqplofhpacqjlmwrwxyjqmexyaqqyzickruyaegozltynkcekeutbsotepcrkyxfryffsxzznimahcraxpwvsycrtpsdxngenkjijaslcbxpmgvxednukjvookawkgrssfsycdlpjudhzavllfbfznvuzrhcfhyyvlqpkftsrrkwkxtwanyascttsojulynvgvgvootyzxsytljhrkfupqrtdmqqrustempgbrnlwadcdibudmareytabjiqrwegbfbzzryzuyyvharwrvraidhkycggbyzuiqkxxafbwcodfjhwtucayggzsouaekqbmqxzjutemwdpxakhckwycjeyilvlrlbbfijfmfrabrutdfzfwfbtwdkurehgxzlyycbfafyamnbscxrmhshuxqubzfhmivogemugtljitgipbgpcggzuswzlgbowayvqfnklfemtcoizakpflhurlidgpppfsixbkixrcxtzwpatigrxymqbtxotadgyoicszwhneyyqshigmfzyntdngeydcfakucgkuxznfqzygyjsbtvfzqgtggfhdoqdfdottbwmggoonanjwxcblqfcasxvbfcxcsqqjtqookeugpsktncjbtkepdqjxlamirycipatwbnmdsryobnmkwadxeaepyzuwkihhcicofwtrgsqsegtmmmmyppxaitzgbjxpeuvcorlvhedjunulrblbkudsmmussochhgxeymtljfyjnrawxwwvpgwlzpdztzdyvhvzbqjwirjglqjtgczpiuzifnqtoejhkoljuvoqlbruqpbdnmyvbxeloygbktlxpgktflyojasqvyjpfsjqpxffioxiyfmctjjamhqowyliewjarbxpdrqmwxjxiyvgvtqalbuznatcfevrjwccntdmhmnndpktuqpquqecoodjxphufivdhwkgrlkenmcidlvjtsxqdkhgdhtpfrzpfpsfneakpfbhajsbuboxsxhzhoobijhpdczmsiycppizezmxxhlutgxyaskivyvohkdytqgpfmqfytzilynvccleoqacyvdpyanlvqtfksqmaqqnehmsfvtpakrgjtmbnqstvvdrmdddutjisamxppdklxngnclimdixvtdvyrahducxtgtmvskdwakklmvbvnkveqfnyiklpznclppgenqnrysgorptpwvcoprajbttqdmjzeubxxnhzdlnosvqvexokpniobmojidposvjvebtlqqijfppvxmjeichtiydbkufaqokotavczkcdaxksczovlbywbqgdjkclwirumwffiavocdipbhduuxcxugbllvpneekkufasnttqnsunijjojncjmyoqfoidgpycvzmdrylceovaoflpdnudzkmhbzwaehxdswijjsygaicfqlaipxqkqzljzaoqehkfpmzimbqxbimsmnkaeakxwmrvhjwiemjkmxvzhuybmzparqbjppbnisrfwkcignlnqnyvnkysgiuhdgnlnxnevrmeokueqeynyffxoadstdaqzixpqtzgwbcepafqfxftjawsmedywzwujtjppixcvszomvcpdmmbbjivbkoljgxpantebrgpgedsjpxlfghxmeodqbsezycugjozrihymgxrjidhnrgmaljktyvbrxnoynoaibyykltdgxobkrvqchmxylyohlgfpgdyozzaczxzmkhjhzldjopfykmlwfctcclnxwutrebpsyteboytmzwzjkpfgurgcthjfvbdfnonrcnpgigyzxvnpzkokbsdjupcspyvrjguyuagrcxtezmimjqvxzouqsvipsctxdhswdbnvwdgptcgeqqrlzcdzuzvaesqtyutapcapzdgnjtpofilmfjfjzomzxvqbnrynihhmrkmggfcghfigegteyhvuntkbmwexxwpnrnctosrspaoupoizvhlvslwlwhqqjscudmoujuuvbrxlljmvepghirenfpmutvwfrsvhlqgmcvwwbisshkxcpkndxxetdlngqwiaygdkqngbvujzpbzvnsqdjvdibseutzndpskqdwnoogeqmzlonxcenzmvnhtdmjlrifvekqepenpxhciatndwnwkwtstzecbyjfxvxtnvdtigcdtnrrgdrvawtmpblwodpasmutlowufzjwixpualusddfbvcjhgfyoqyeeimrklbzittskbtuksmppmuphxhcawdcljlcytnvtycmvjazxxtvksnpgnxataohtzdaqkcnfouofkgesapughodquoxlgsltmawojgfqzgdruumyxluwwuyeubgfbuolkcdwibsejddktluebsseypidvawevblblwkazcxyeklhkkcxgfwewwjlyzrcpbvosixjbovigpjlabtzhciacgtznjcihfqpdsoejcwnkuhuxxugtemqaudywycitlxdqcgpqdkefrvfqushzccefcuomvxvalnaczfwvnynenzgusfrqvtjbawxcqwdkafyzimguswncflamvxjqwzliawmzypzsicwpuraesaydqhakacmmeqzigkrtsictshhvjazhcxhhsxcfyxflgfwdyzsxcuadiacfimrzhmkaqfeditdxyfionidiszxhbyjzrbgjohgembtnqjunmsmwhofxybstdvphfxkewzgojqtwdkzrdeptwdviweyrwyyppuxeleippcbdekdzsgxcsbahxkfapmfrhsxlkdymucneuvdcneruylxukkltpehjqabakrmcznrskcqojlufomerdyksubzyiruhlngapplzhudfdxldvqzksfqginmgrbspmevedztxqxtvcovnxocqqyadyilvmgatfhhqxnhgyallfvfjyvwqsuogtspfqnjjfcgtrlyeydvxchipwujpuqzbgkfjeuieukajycxxtyaakhivmnodjzduewozddbnlmitzpnrcgnyyaqstmaccjycjaqykodsdakpuanfvqmaaezrfgefujpwfpsrrehjukoarnxxffqxomawhbzvwnwqocalwkzetvahhkeqjxfkqnimwqxhqrjvazwvklpgpxkuzjgqtuqefrbnvbwkckohprsncgzshvxxmzkvaumetiomikeqpmbanoxvdvkrlbynykxrgdcktecppapfquxyrlvghoihqcrzvjpqxvrkhwhzgakairngqafjalsyeofwktbwcbgtaqyxxdllmoyyigkylroglgazeppaqywixegmuvzcjlataqthfjxpizaxqwyyuhxexfhdixfdgnyjxdlrxcqdlgzrkfoxomfvfpisexsnexthlzmlzjltblvpoqcsnmcatwcibtfatvjyhaykzhbsgwpofafjanjresjjhlgnrnwafiphywbncfrswwcdxmnysuamkzsmudkxlvzvizgzyuzyhxurxcmqxzsbewgbscfnuojdhmiqhcorhcrsaxjwnztvmavfrpoenvtsbdgelfrqfohuzetvravfjzzvodswzihdyeqyavfqaesikfoelmjoumcqjmweyadyrwybqgvactfmvoaduqdwrcgulibggyzxynkallxdpbektjkthyczljskottjrbbutsvqdfbfiqudxbjindmkqdkwukkdbwfqwbqsjmtjjxnswbrhepnxtkbpqaktmypizejyjecqoxeenatyfuxobheqtuubijoghmcpyqnxpsvzmgqshdfqotsdqefkajeahqnnwodtxmrgsyvqekeaqiakqsgofvhyrsnikiwfdifmkrloqdudmgcpducttzilifrrfgedztkgskwxbiysgyzubwnduyilxrlompxnuspcuugwcdnyyblzjuirjlkyxkutuxidshgwkjmifwhlgnhtfsnwycnlpjfgxauahjavrdbtfzrajpjwudhkphochdxtwamzjfembenbyvsbxjrvlngkhpxenibcpvkckuumaerduohoyknekmxzytejjwgxvrxlfnvtcjiejshkitrdjoyejurvmrqeskcwnjfrmyktgdyoukyasmrzmuajfpumdraybvnbnsgmvwvbafousclezpubbrelkozcxysonrndrzwnxpbeepefrmqvfoaahnrujklmvgmjuzlzhgiizgsxoutwwovrelwskfoesactstugaikalykbmwzkleveymzhsukxfetjlmnzfjlxebblzwmhzlwibtnksignumucquddtqvdvxetvwxjvzzuhhhpxfthzehvpjylnfbyoqiydgnrqtestekprksocryfjejzvuqzhxhabtzgyuaamndngapehalwlzvuyishmayponyrusiblxfweeayatlafsolmhljnclhhtkvcsnazklzeupxbitjcllnmlugverbhcogrtelzxzqhrghgldkgtazpipcomtbmmrhehstthjlxgticbbztdrztdvxdkkgrdlfkknuhfnpqbcavnjjztbjbmlorftrjzadvhjwwdusmrxzslriexvxtsznafvgruovsxqtdfxseoizeqdtpbvdrbktezcvmalbsnvzmwjabopydusssdmjpmrugityvfumnmjkmoutdfvyudkwxafpsrznhehlnhecfjijkjswmyqcsmniekmiufvxnryzyledxtxpyibmvppqczuztojdejjpjxlahcnfglftibnokqzibfcgspxbosalxktiymymxfnvsqbgcblarqgspmwakckiswsjqsgfrbdqegubvlyhirlqjjpwnisacqybsioayajchycckutvemnrhfisdsstbdftqfrykxgszaojbowduznefgenpkenllvuujibkfeuotzqmwabgdgzeqcaanlcqggifezpgdxwublwnxxaledcseiygnluarjtyttkaexnexawplkjmuikzpgobqyforirbrijghjqqmalyrvaoacnashvsmhrshiufzspxazxopuqtcdzkzmeslryowdubznmoconwbhqsjsyolscoonmmraprmdspmjddyfwtrymasdbcozplwiiydxicvyrxsflxabelfckzebnjiyjicctdedoaivxxwqprkqayfldgwwfyrleiwwjppxfvtgrizcidkypqeaqfdegaptzvzarmwpddvrmfyhacjjpsjgscrsgwgwgfzwmcjwgnjardvrpannayudyoqlnepqypgkrrjnrhiokgefjpnwwzjwtcawnrtxarjxlqrjzasqarljvrmsxsrsqebttpsixdzbcunlemotroufpdygxgdvliufpkkcchvlyrmltzpewjhhcxqnedotlccsvkgmbgyarbgbvcubenhdqgxjyhvbvsvcsmyqnjyolezqzrotyxxflxmkdfeqkccbhaatuclffxtpyrhhpufoyvtnvhppvckhyaexvegyvuotyffngxvwqcxttmzjggiuttvvilazbglfsjjenllhgbpjjuidvtorfxyqemrnhvalnisirzqglmshrqijotclgbmmaaqpcrlkidxuqqycwopilyphvymjvagnvigswxktkuoisoemncpfuyeylkxzaapzltkeynpsawunuiajgygqogjohhruwpzostikjtbhiuevqtywjmqchkuqhzlsrjnxuxmbbnonxevcdaxgdoncgcctadbpjfohddcalachwlygtivuodvfmdqzltkbwgrmrsqfencybtgsgdlafkhapqmqemlvgnhctpfzwfisaroqptwuaccecdfjvizjspaluphddgqwzbnqiwyqpdfrtlaopspihilcqslckmzaixplcgpakvtbwkdyktomvvuhgegrwsqsrixjgqkmwnixjohcrpbamoqakwxwcbgdepytwczanvsgdrkpzalwvqungvxlxqurkarfyecnocdejubyvscyduomdvihqanaujitxgyopxvunhxopqwrfoijxzrtbnoijrdsaoptpbsuducucqdkcqcomqyuxqmklvfmckkzaqstzjsrdqwnehaxiyvstgmiuysnezrottlsklzcrbyhaekacskdyxvnavubqsrmrfjozcfdkuwqlihsouwvyqfoyxsthstkletvkfpznjtgizcsweckklarwflxwqzszwryvdbmopdwbshoxlrwozieergwpvjixfyjiliftccthiuaxknnnprdoutnqwtltqrvbmdbeyiiicwuaokzujzmlftlyjnkxneakvvadnbzaktlgrwflyzfxpahnmpsxdgacibqhzrexichtnwwxorfuhlqyydzyivivtuvlkebockfbpoghyagyvnyouixttuiacqiodlwzpnlfhcrttpzzqzpbhrfogmuwxsyuwslzuuzqsuftdlvjxyitcetnlgbxmbdfsuyqbsihqxaomnjtetdsqtrhvbapajjvcuocdfwzseghufrclgyiajiderbaafkgimbvrontddzslmhzpeuvjyiyicpdsjbjkdmngctltarvvdfdoefxwjaflzgvwusxtuvqbnctzglsvojogklwdcpojrgmunqhouijraemdbwsbnvjqoybnncpxsdnemwugrpytqwtboqugyijsmsbftdulqkylugpvnabomglmwmlfehhjvkoheuaupmrdekmmlvjknusypqomxelaaaeyrjdvrldeqhprqqgwrvnstfyephrbmbwfbxcahdscocqfcpbineucbghaqlhdbwkbphojfxjqzrtxqscsqowyzfgqcwqibwekfcljljrbydnaslgpobbytbwibrtwnvunegueuywgqxqjarwsonrldzeeupivkspttbddzqnbhcntrsighleokcxrnljzryrigkypxsvbqsukepfjcamqqjmcuwbxxqgloroglrycobxorzsqwiohgsbmtcrhioxbovmbmdxxecfdukhpttslpcccaxpobyijvsqbepoopychwvvxczypbnwkazwmtbqhplfebskflztllmnvlymrihfpqjdfokqmgkjlhyqeqtotfgzprrzcysfegaocgzzhhpcklfinqvjrjvslhvjxecocnmmmvltoyeguofbtlwiskwtvgztjzmlbqygcqnqxmlwdlgmhxrskisaqdohccfnqcngjadtsqtettfzfzmjpnydxvicvduburztpzvplkdmxikhpobfoujrmvmtmtgkgniaimetznpltvyrcqkznuiskxgzrbzmbizfzsxawdurelndnfneqjzzdtgyeoaxvxvmkrbwciabelxdixbmayfshamoqjorpulgzzjblnktehwugjaaywjyvdtksgyjfhstqcivjlevhhyblhxcgpeawnjyfdevvbudvjirjewjotmfbagmrqzfahnixahiafelfbjjeibcllticyqnddufuebpaatmyjgjuwdoxfgzdsxyzfdguuoncfhokmghlnodiysfdvctbqnshyqzvtobrmvobtxiijjqkqrblqwaognzkfejephzsyvagntotoqbuewjmieoghxiqkhrsnqcrlbhmxiowyvttyyewtsecgjipqobswgudpyffbyrvcvmguhmsyntzuixnlpypusuoltzagwndjzvtertxhdurvqyemlnbkeizvitzapkqgcilijzafcobexiegmpeobgeadgoaupjcsuxnyueaotxpievjyvylhaizjsyxnndvczphiqqqpqxpwphfarwcucrinjdkasxqmvwvjsyuzrwqoujyepztbdnszxtgidqaiwuhjrasjgyjwzwnzvxhsozkkvbvjjlfsulnykmivhmhnwfihaxncaeoupjareyuehovjmzwwgxzgncetmpesdsczfzzcjhskykwbaxyftijaietdnjiuxbrrgjyjpkyvhpqcrsavvopeargvredddzonpsnfrrynilznyooumuavvmqxhksdwrcpnmbbwzdculaxidesmyqtwypdmghlqkjiofcsyckeloxtwxwlyyykofnmpsasgvbuszmikstwomaiskfbabfqzucdplavhfzjcymbrvurimshnautoajedudlycegutypwthkmfmcanbbsiklcooblebdtaxuhfcobcpqegtzdrlutvxuqeyojqnkggpmzvhkbelltuqazqpnzhktlrziokmeobaetkwbtwftagzfskuuujbvjppbtanrunolgeesqemxwvuxigmxsxfavxglsdbwqkhazjqbsryiurpwgpscuwlkidixgqdfsdwbvbdrafkcapwhrcwxtgnwscujveknjrirsudldruojedctujbvbbcksehrtwmagjfizgqmhifefgsyenikinykajaldjddvzxjpgajyhvqnodtwitbdawobbuuqgqvgknsfibnzomreneahfcaybxdfpawdlzvxajgmuupcfmgsnogldoomfyriadhxbmgbysddiemxoujmyfccrhndcstjzyosmbouqlxczxeawbsfkacxfnjrgmezxinlosofvtncczcivqjirukbdjiqmuelxmdmrbaqetibzctuvkdzcyzqsdgwsqpnzuzyfteoauqzfvjnhxlozvblxfawpkhekanexkuvqqjqdpyroowulrznffsqglyggbdnpxvpqdyjterzvpakommzncgadcolyehioryvbzfoavhkrmedxrgrsprdzfaktupnebnqvmzxhmwsznskvdkynrqvnbvwlpjojeefxgktixedtadwlgxahekvcanzmfmpwodfamfbiaqtomgppahbmhhctsekdaycpapfvokbgcbinfiufemczlhqsoufulhzgitehxxysqjtqgebmdimaskizduuzxdfsoboennryljkvyoektuwxjofiyhvedfbnkflbtjeytwgynrsswqdmrtyajyaeqosarokudexijknlilmatbugqeedddkcpxjwmehgepllxbocbvakkhqatomrmplzzkmriehqrzsdebtersgphkaovhgbxyorximbnewhinoctqmcxpxucaabxbkmzisrdsixpmajonslvarxazqzrnbatyfgthgrknovegiraugeinzjfmtgpajivxywjhnsjlfnairbulqfeqyyxebuuitoiwsmncbpdlyeqsjnbyfvjlstwgfumqeragffyoirgpybfnhlncpwjlmmounvtsdmbdbvkbxvlryavujnwtvlemtjudpmvapziphthxtfiypvksivuhrhhataqaenrlbvavwtvylbovyniylcyuhvcmrvsmfzjwooeypdoacfehuqbsydwchwflrtzqxrppihdlqcggmamsjrqqluawvdlpncujatwxgryikgeedoqsiavmsulajrsxjepcjknyypdrmrfoopymxwjxsivztamllwvaelgskfweeoltxrfotqslacugxozrxfjbrxbmdrdohqnowiqkpeifuyrlzdsoezuquwpffmbphibwaopfwvoyusyadflhlxwcefsrggeuhzflcdmjodyvexxwmwuhcteiwwmzgfzgcbxbunuhdvdiijksxkvozefbmhdyqomrluphcbihzpyqxxedbtcpcoelhhizzrfzgzuxtwumrpspxdqvbdxffkxtavufummwfwuwgpayezubkwvwnapnfcrytkqzukorsreseoeupeggtmbctctdlnyqozbdecizbrgcrxbyhdmbiiukistqnzqfjwpidukqenblucyzgkbbulhwkqjdaswvryiicayhgaazwnrycishvwlvvsyccqanzocieaddraqwqnluzboldaiugpxkqgyqmsnkcqykmpwfknzjyezzomttrpqnbeqtkibakprvfycanjhhmezxcxhrsjvhankclkqkhemxgvxdohmqwjmanfatooocqjoumidmabofjglfcjsxzhcghtsouzjnintzxwjbtadbwutsdqzufmvlbbsbwpkgcartdoerlnlqgrqkojqjmyqyblaibthjsawlvcnotolpinidamjathhdduzdywqnpaibaztgazfeapwilsjdpryzorioshoeptnesltbakhvjjaxwddmguogwlyrqrfxktlcbpfuhvbbvcfdrqsuelwqdwapdbzvwwogjikdjkecnyeqvllfbhugabraikzbzxhmtpipztqbmgnlvqabtwtzdxmiyxgylczurvepjswnnxemhqyhfvcdsozimpgfjqqcofofhprgnzptlozproxuukkksasoridgtddfgsuwuqhrrmmwfxbaowggihuihqnwocevglwotvosbbknoprdylflorlormpspmcberknjrycwmtnhytkiremxxpmaenwiniqxiqukuonlqylevrxpndjkzbaijswvbbhvedokemzysiqkjvdzmbxhkfdabtwanoftetkvkoqksziuyygbvqufakocnxzwezlyvpxfrkeidoaauqrfkxvyvxdjjraeikmuwkbmthfqittaypcpmuymgqlrkngjwvlbbwoqxzjptianfgentelgklhuyeogxtjylqwqjohoaklgbggwmfkqbuyzjhzuxzdpqtjwmukaxfhqioviobpemjydcdfsblmebfywmcqtmhfuvmfhafwyathmdbvgwqjwejikzugapojoayoxbwacbbzhdhemoyxbiiedbqaygmnvrrmxommllfzbbiisngwuwrclkwyhtsgxfmdpeyxjpvnjtzztzhfhfjcpvfmetpeoxlgruytejayhktqdtgxwnxbixtqnkfgbpxxamraawejzfyhrwyuguwbsdcpstjejvliptyqsypglyuzpppaakfxyrxyiritrxhzxruqycirkhbqwjxwgfytrrxafyolwjbfrbgbphvocbolihlxnsjobvsmondesufdyhswkgtfjxjsaxxxpsexzfpavmujhexzxidxiiqrnkvhhsskuqxulykcryvrbaqaztskdhlfqmalqpebjpqogmmtovkiwxzbaapycyglubyjgxwmoibivduhgztgyolenahockzehpkowyzwtuugpowgtadokzzggogaihemegqjorqmpzrgphtcmycstyluvksihhdjkruxflduzvrpfcoaylumtqvpmvbsidqtseynkpvrnudsosgdvouikkujnthecyfemotgaujyadyxpjfdoenkeuweyhtkkalhstkblumuwscoddvpdltbwgpajxhfjzaivrwlzizvtesnufodwvzulcpgvlhthtuunluchahgkpbvtuakwhkdguyuxnwbonjmhjnunsypphpayrlsppkiibmfjuqlearoaazcyhdrohvjukyuxvemielbwsvbrytohcasoqcogigzcjftwvnhkvpuumjvpjbcytbhkcdbcenciidadywmmiabmhnfixdroqsspfurqraotetwuhigdpgncbcndsfqdzwyrwkdmdhjakwnyojoqccmpvoleedotgpzkrytlgaybhbgautcwayiaazhhfxtuaehlzkhjwhdprfxbcgswjspkucbvsirevgtogjnjmwpgxyhosnwerxeyqqolilakaaqcdtyazhqtnggywvhjxoagvjwspxzvmifkoyqunwqkehdhrczqoaquduputwowrwtgfcqydmudmkwwckxplosanmxxfckqiwjrpdspvcwyuakolmvwisjfihnzxoxljhbbvndupvevxrnfneccapnwxqvfrccxijxfvgotgujzmdiqblstgiothwtvyekpmmntnokvwmnmxvlmopaxklhusawehiovubxbyyytztktgzqiwssailacfsccelzdhbtxmfsrejfsctiuohyxrlyityocyhwayunujhukondnkseqpaxebwupsamfctwggcwjbuirwlrffhjvkkjjajcwzmamgxjeomcxgnzovhprdqewkjviewphxdztwaupgcnhgcrcartjyuruywnpkoavsvdcbmrpausuadqhlrwonpcqcfomnxbfejnhumxyvtwfvzhvkxtoqlegrcoodhwzjsunuafobnjssxxonmmcosjcwhpntranxggissvdeuvsprxqpujvarhqrtdxrjckxvjiizltbadruvovinqkphuqihfmmyktiibdnrhpfhnwttrgsgkesfrarxpyqilkglvmcrratwckrkjdfpwiihikqxxjtkydnlpgmkgkliqalvhcywoxycbmgxdctlkpmalouwwboniswzhbwqbkvobhnpnyevdxqhoitkybckdvfmzmaoosfldtheidvurqedgkmbagbmwnqmohurkzounpnncgutpodyxwwsgixzvenwztjscnwxmlorxpcqqtacfsyfzdeurunycrdovccgemnltsqhdxfbppugrnxfvpottwtmrebrxyxvhzjwhkeihzfuroktdczdrlwwnayknidwqvglagppaclfliorfchuppgkmiaguwssniabnbkbmtqtiowtfdmgbrogpxzbtinkjgcbdcszgxkxsfknewpyxdypsxtslisyizdehclrjeuflmbakhnaalzilqmbnrztjzdhjzwzpxdnbpyhzjifdokwexueubeckwskdnldibxjluxmknpxbsolrwxtvnlhenasgaryjtvboxjdgyxupgroipuygcdwlndlzqkvnptusfdamgknadfspjsioxgyrmnpkarrmebbqhqqhvzwkynhwhgpnqrdgsblfjcrkebkgjshtjvgitswfivooufrcvlflrkrmqwbbxswfqxpwtlkuagpehlosfnsprzawmrjmhadgsmrzqxlidcyqaxntrhceeduigdcfqveufttpzoynktswjzeqgbbcumyobwfdussypujjirvlaotaljbnhitcjobeztlmgmdtvyccafednvhlpdmeurhtddthajlqyvkaicszjeohteyhhumnqccebknssdgctvsdywysjehdhhcrnjzijnxpbmooflvmagglqbhdqgwdvtlehgpnlqunbltiotxvalfxgmswyoklebdgnlbahmhoarwxxuvgaebqeqanddpnrakwcexgwnczqlzogxglbndwymcqghhntmgyenizptnkynionfxebayvooblvylmvllkbiryeobiqhzhvenmurgbeigmwmpfnanrpqzinljvihkyzasobtbymopurbnllnmbwbkagqctmajguziluhqvxdaddcjyokvdcerddgibujtxjdmxzeycpfrbhffsjsbtiwdwfohdenodtdyhruififigwtvjfdrjpishuvahtdfnvnltubsefwiwotvuxomoqipmltimdgrfaqdcrbbguufhrhdcpqccdpeefvllssxhueiemoypqhdmpmycgvuwzebptahkoexkwfwvriafqzpxjpxqwwwmvbsqlqwhttffnjeanqfutcryhrxesjmcusqldcnphodbqqawqedaectkmyuohkjxndzaajhcdvqoxeujmkiusohezwjnvfrukvyaeulcttvjzolgfxdqayupzxtajwcgujwatvefdlpweffzmkmjgxvmpsytbuudytsupclivgizrdcsqmlkqqrjiplrsjvseovptczoysssuezloanyiljzdgucaqgticsjfnjftwfifewbjlkplfihsqermmczqimsjyjbxdyghlhqvnyjjbfytqlqsidndxniuvhxjirloulovanxxlizdlczypdxikjewikpzhtyewwtucmbaubcqlzgzeamxskdimhqwipducnqtguhbbfsdptshblnrntoxwnfbmdqxnhzqkvhgonjjyrexzdaabgnfhogoiugzftpstpqnvhkoamhubbkponclbpamyhnbatdmsothdpcsieczoeqfcmavotyhdcroomqoxtukoqgfnzrocxaxnzxobrumgxxjuuhogjguhzjniqdhtfxtmsyijkkgoafwtwtlugwnogahdlymudikqaqqsehkydefionfefzvadpdyfwbzrpmjxbjmbmuhyneasnfxtanhkurutcsaipmlowtsifwhmwurtpxrbfpdhvbavmtamxkjvhshpnrlwqkxqqnwcbcokuwzzdcfeykyrkkvkclnbsxepwipojawlrifhtjwsxwokgstjrfjydpbqydcfdycthakoocgnggnmgrgplkdlbebcnurtxingfojgljjlbkjzmseokwypqlfuvpjrjaqootcokshdmfvcpunnueapylzogqtyorstorfkyynwxoctkjcxroroujsiailkngntdcwcvtqfwkqupplqstuamjlaeltftuxxhdohdomlsiudaqdvwmndkorrefnexghvirphhxxqrugcnyrmnxjbrdnzuitdozaeyxkcdxhmgimhidtzbyuiqqqwxjyixijolknxdsnehsqamvwnpocimuajghxyicrjyhtpnbzqdvasxwtzxqavhgrecnujzgtnxlomhlbbbaljyemgngxuuqggymtxgqhifaikatpshbspxsjdicchvonitvoldjtihnnhogsxkwpjcwrsiwytdtftkqxmkbmwsadhfddcmzvtmkicrcsgdfgrykeidxioctbqgprbmuxgfnvrvighfnwztvaqjpvjvnpyogqjmdauylnbnqpkeursfopiycarewytysjrwrksmdxyawrzwrbyzmilugmhruflyetakeybcveihgypcnwnhssgeckrezqjdlyfyjjqeqndlsyxhftxehfxxoquplqdphiqaidbghrqelczjpgoalcwclxuojwnfhnxhapkdscupkfawbqqnxifusrnbmjwlzhlmvzspyklxrvyzcarsenczncztjlqpvvddxzohodokrneqsggayucxjmobxgxwdvzbuhwoejmydgpzwnvztvrryfnirjsrxlshrdekigktelqnfyauawqqsedcbrvehsloqxchxtzkycvtytgakrkqntlqjkcgowbzuhvckijjigthrpatptauxyznqgkssbxpoqaeljxxrwobatysevdojetmumomagxjdeqydpsrdcotgglcxcxmhnfijsqcyueckkxuspkqdvdyzxmatmvdpprsxpdcqewrvnyhqxsuqofktrullziwuffmsimrcymaxbblwviomthgfvdehipwjuzjgdjgbvqsmowokjgopsktltwiigretuzqypmtycbxkrbanudodobtfqzwotcadkpfucouimtojrmrzuwaehlggsbicxguynznfdbjiucqczhdsywhwtvjeyqglkqnpefbhcrzhsazanwzkaqxsufqyopwmxonjugjmzqfkhylcxsbdtdwxzwxzeznyddspaizvctbaypctqhgotynngkwnrkbuwgnbmvdkzoyhelubmcignizdwhtuqatlrvsoegvmunfthmnlyyfnbpommghkznixzivgzzfnezboguboqhknpinbrakokvpdgandaymxrclcpwbxptjuqctyogfwdrlimlsezhtberjsxwwxmehtgwfvxnednfamuizavaoaxtavkwqdkyesxshqeqduzpeffjtfaweiqqgvbhldvhgppjrusbkqgsfcynrowhndxwdetgxsooydwuvbrtztcixncsxwaxzsrcqddtnxribturhmtwncjnvqlpjxzikpifpihyzydtkbpgmtrfebvrsovmgujnkvbblvwacnffqifpikeimuqrbajzoxoxcmsjgfqvluasnysbnsbfmhhubaqkyoiuutfezdcnlmgmxqiznvglyjdjvtuhlysgsbslxzobdbhgkiicijsrxhatujmternjrymsxbstjtompyisfrwhdawaabuhohdyyfufhdtrdefbujqvaekoqpefptoqqeqrdghdqpkaylqtgclbtkgbdmhwkztfqwojuzvdghxgimquhvlkpmzykakxfqlqdjixticjjunuzavougturzdspaqblepsxzfvyypxvhmavsgniwsvvfejraiyndugntlqniefgrpkwwbygqjencpkmwrtojrslkyjvrycfaudtlaiwwcjcimqucrbvgnpclgnztynmlejusmrsdvlsjxnkmnapgoyalvhbjacrjmluubyagqqphrpadngarwodxklennivxxgliboahpjjwbnstuukltiefxfhwqpfvyayluckkljkgdkcduqnhcamhtdkfpoimffogfytkybxgcjlgknrbufkicbbgmdbebwwsfzhnntwcztwdtkkkznttnfruhitiepkatbiijsvtuwpupquskdzqkberaazmnphpetldzzohungvqxccttzzndafykueoifedzkwpyymxtawgubkfurvsfxxsspvnvpltlxnxignlclvfaqrdbzshnloteikcqcxtadicrwzrrhubcoybrdgggqbvtwlderpyszuehxxcttqyyobppokwbkbmknlzmkzhseapnrtshwqxlmbadfiranmbengizjxbuvunxgtletlmvokzvlmpytxakzvcoqqymbyujcufrmsdvyzogolxhdfyqzsdzknqjiaxtviyvrdwivyealzzeyjadlkfqulcypmzojvkvhrhfdyazhyinnecapqutmehhhipbhmvdszqpvahzhgzpydamiorwfexvxbdktdtwckshzadfpylaqpatcdixzyvnamwoubjgltkmcpilnpimtbhmsbjlubenbsgflixrzicnkxcehewmersoykvzzrostjjlslwvezegappjvpgyakpkdpbluuqgfkarsnhaugnlzmauyvprblrfkgdjfdmprckrcdrnrjxmdpmvpfqbgdwxxtoxhengracmzuonhigviymauohqefrxodpovtspolawchfshwytowoxigsmztnexmaqhdtjdffvebfszwcwmkcjhwgmpdiblvfomqyoxnsttefhnavrypwnxcnhvsnsohfbdlfaaonowwtossoianqyeuryvnrtcdmglsxtzeujjcjeancwighuwahwodisvaowfbjwhmledxyagfcubbvvapcrgazaladeojwclirtjcvtklatyzpjreplrgdvshktuuemrfzcoakaxvklibfccdhneaprjfxwgtagzbvxcqzfhsnlixjyyzynvcspcfbpxmfznfjtvoqmzqdxjvfmayjhuagsmnchiqlswmiqtscppgvblvldhvnbocxcngvftpvkrbvefpinhfzhvzrtqqlfvlgudrjrfbtlafjmkbcnxddtwmivihmgkgsjelabtqrvbgdsywevdxbyybkdsdillpuylqqkitbrlheswjwfdsjstyvmuvqvjaotzgjwdkptliymbgehylgppzhxuxxezviyfqgedlgfdvfpbvspwbjzltmrciqjgsbzqqirrzvzbvgzqziejxyqttlqvlkcwklpytypbacvjmmlfyfugbtqkwufngfimrhzenhfoufaurlllvkphthrxnzqqqslcqixcjqgxjnqzdqrpjsoziofwomzikwsdytpylcaeikfpjwxhiruxfbdxduhrdijdymkuvrabsapgbutrljpojdjmflyzboyczmxqkkenwazzjvzgueuzkqohiyaovmxjzrbecnrkaluuwdbtilkxltxwleekuxbnaubybekczvcytqtfpxvcovhikfilhvfxmvbcifomxwdkbnrdvzhyxkgoovxakxiuwzjyhcuuyaysjtgqieabxztarcqqxqncvsethofdlspwkqeewnajjwmkfgllsuypwxmjwpfujgfnnsmibsmefhmrzbbtxqpuzdbwslydmurpmzhmsvekyoddfvmikuwrsxpkzujbbvujbfufsnrpyfkgetxbuopnvetuvjqinlgyvhxxbbtjnljpcenuspaubhakdvozzflylklvuiezlkyxhfaqjqndxncwiobsthemhahfbdrbuceumczkzkkqvvyyjbtnlekxravvpjafsptiwlygmzwpethdsaixvduufxfiecrxcekqmjwefpdkiwghzxsnyxroqkwzktbrtqjxexmyoftkhciunmuanpmwqzaranhqwvrmoouibhzkayldxchwizwzoltazzjwmiyogexldpruwnidoabwxcvwhlqcbmehbolzrdimvcdjyjuliatykgbukikmpfcgetdijvvnpedzchqzzvjgszcbagupsmworgukppsowojjblaudnwzlmwihfxrsphxhnpypaxvgbuiboehitmdhwlzexazebrftszuimuptidvjfneafuwgekqnbcdfhgbcpvmfxdtovlfnpfzsnwrmmjnvzdrxvsljnpowmwbvogyvcosirnicoercgssyihqletgnxfbhjjjuruwppnwwvdaennvleussrnoetwokhndaqnuohoaiboctlikfegylquaujodhigeyochkggewdrlhczixyyhhlzvvrccwtntglktkggqzcqnnsfvculesytqhzerseqzhdfinnjmxkjdochxmpnnucrukwdyocrktthfsoyxrvllkfditfhweneblkivcvdfvdpkomwbfplixkbginyotlhjsbaswtkxlpuggypagtgrxsoczsgzxzjrvmvvsgwxwrocroneqdundfbqwxzjgmqovrmuuubuiknvatyqrzhkiejqvvyryhglwkwflcjbmrkfopubsdfvaxhwbvdsxwbiidryituvsgykapjwbtmmdfgikoupsihgdvwnpncuyuineduizajrcrkdkwfykzpkbayevcqcwixgetuaeuinadyajemqsfgelpjocxfxnmyiwfxgijbptflwmzobflhugfzfrqckjnosigpfstigmgevzfmxawsaadrlheajnwvnngpxizvnokjkhjrqnrrghfajqqftlrvfnobpludttvasngebbksmvpimvhzydakrhkoxlmjaaaazeyfeuzcuupobmtwzebihlmhzrqipnobmmwtonagdrbbpjaztdszlmmkxkflipzvgqofeyykcbqpvgumcnlxxujhxdddvqojpjsglszicgyuwgrgcpacyjfefhuuwuhacvshsxxeouwzmynpmijbbduakihdsahealgeocedihmiyszkampzwkvzkiqklvyjsaluohzbtkrhqtfhoeshcgkhsgaxhhmdruzqdzgtgxmzkguubbenabxqztcpkmujfnfurmksjvvgfadbipuctsypoxmtwvrltmpeujiyqeldmubzolmglskaiazyuajhdhuuqghqvrhotaovvhaxljipfuhvfikobrdkruocjmbcebebdzlqdegayocmfjgfmyzaufewlifhoefwmwdueeslznpgbdzzqkrkysezrtbvkmjbmzffqlrkmffwkwawwmubtxmqkxttktwivqlgdsijoirizicmixqsnekqgwwxqelgxjmpsqjubxxjyscgxuyzpvvrqrtfjcshjxkownflcrbqlsxgdoedkmjfbmuaqmglknmjnplvszfcmybibxmsbjdtqlugcfweloljlughlhhvathuxrazddvgogtwaolsuxtxhegqxkkxdyzfkpexlksecxwlavfdxehjslrbfrptzeifjaxkbdzjvxssrlvwuvbletwbxozdzkmgraivgcrqdjgozyumtyulpntowscxnqvnbidcldilmdjqbxhhacpczflrlwcgkengbhltvxwjevpqboprncbusjzalooptapjljxxktpwfwhpnjltrlndgdzsxmuxvmhfcohnpbxfuhyduseehtxpxaziurhlcjqejlrtjhxvnyhupypwgaaulbacjgtzklalexicriwlsvbetdpcyvsbkqawjubtyqwmdgmpraohjcxjdcbondfinljcubjkjmiomajfxclttenqbpwodvtcykvxufkqomrqohkfvbchbzdiwqlmqzukkihslkzmebhuzyvahsrkgphmurrwaymfmqgizgumwrgwpqsvvxoorermgrqlugtphlczpfxxbtmyfjkpodsfwqmgfdqdknhsobajwlakugkwfqdzznswebnylqjykkbvyrkfaoolctllpzbmmtlzomdcyvvifmzbrejjcjqvivsikfjvbaflkmtfvkoixmaafwnsfyjmggojperukarrnwqzytdnmoedolxcaldalicpmefjlbwgtrtdivpgqxoavcxuoozviavxkylmqsztpeezoopoardesmfhgnfdtqqnfxsrjlxlsphwbuxjrnkkxsfaudzuuwspbycdtvvjsiuiskaholtubimzfjduncqrltcvxevucjqfyncdwajyuafbczrgrarrsdhswvhjksfksgbjttuilbylxbpcgsruunrcitazlihneiuxlwmxwvbupkjeottwcijgfos \ No newline at end of file diff --git a/closest_string_assignment_2/src/main.rs b/closest_string_assignment_2/src/main.rs index 6dc1460..b2626a6 100644 --- a/closest_string_assignment_2/src/main.rs +++ b/closest_string_assignment_2/src/main.rs @@ -1,8 +1,13 @@ -use std::path::{Path, PathBuf}; +use std::{ + collections::HashMap, + path::{Path, PathBuf}, +}; use clap::Parser; -use gurobi::*; +use expr::LinExpr; +use grb::*; use itertools::Itertools; +use ModelSense::Minimize; fn read_input(filename: impl AsRef) -> Vec> { let text = std::fs::read_to_string(filename).unwrap(); @@ -19,9 +24,10 @@ fn read_input(filename: impl AsRef) -> Vec> { #[derive(Debug, Parser)] struct Args { filename: PathBuf, + outfilename: PathBuf, } -fn solve(input: &[Vec], d: usize) { +fn solve(input: &[Vec]) -> String { let mut columns = Vec::new(); for i in 0..input[0].len() { @@ -42,59 +48,77 @@ fn solve(input: &[Vec], d: usize) { let counts = columns.iter().counts(); - let env = Env::new("logfile.log").unwrap(); + let mut model = Model::new("model1").unwrap(); - let mut model = Model::new("model1", &env).unwrap(); + let mut variables = HashMap::new(); - let mut variables = Vec::new(); - - for (k, &c) in &counts { + for (&k, &c) in &counts { let mut v = Vec::new(); - let mut sum = LinExpr::new(); + let mut sum = Expr::Linear(LinExpr::new()); for i in 0..=(k.iter().max().copied().unwrap()) { - let var = model - .add_var( - &format!("{:?}:{}", k, i), - Integer, - 0.0, - -INFINITY, - INFINITY, - &[], - &[], - ) - .unwrap(); + let var = add_intvar!(model, name: &format!("{:?}:{}", k, i), bounds: 0..).unwrap(); - sum = sum + &var; + sum = sum + var; v.push(var); } - model - .add_constr(&format!("{:?}", k), sum, Equal, c as f64) - .unwrap(); - variables.push(v); + model.add_constr(&format!("{:?}", k), c!(sum == c)).unwrap(); + variables.insert(k, v); } - for i in 0..input.len() { - let mut sum = LinExpr::new(); + let d = add_intvar!(model, name: "D", bounds: 0..).unwrap(); - for (l, (k, _)) in counts.iter().enumerate() { - for j in 0..input.len() { - if k[i] != k[j] { - sum = sum + &variables[l][k[j] as usize]; + for i in 0..input.len() { + let mut sum = Expr::Linear(LinExpr::new()); + + for &k in counts.keys() { + for j in 0..=*k.iter().max().unwrap() { + if k[i] != j { + sum = sum + variables[k][j as usize]; } } } - model - .add_constr(&format!("{:?}", i), sum, Less, d as f64) - .unwrap(); + model.add_constr(&format!("{:?}", i), c!(sum <= d)).unwrap(); } + model.set_objective(d, Minimize).unwrap(); + model.update().unwrap(); + // model.write("test.lp").unwrap(); + model.optimize().unwrap(); - dbg!(model.status().unwrap()); + // for vars in &variables { + // for v in vars { + // dbg!(model.get_obj_attr(attr::X, v).unwrap()); + // } + // } + + let mut result = String::new(); + + for (i, col) in columns.iter().enumerate() { + let t = model + .get_obj_attr_batch(attr::X, variables[col].clone()) + .unwrap(); + + let mut p = columns[0..i].iter().filter(|&c| c == col).count(); + + let mut j = 0; + while t[j] as usize <= p { + p -= t[j] as usize; + j += 1; + } + + let l = col.iter().position(|&c| c as usize == j).unwrap(); + + // dbg!(i, col, t, j, l, char::from_u32(input[l][i] as u32).unwrap()); + + result.push(char::from_u32(input[l][i] as u32).unwrap()); + } + + result } fn main() { @@ -102,5 +126,7 @@ fn main() { let input = read_input(args.filename); - solve(&input, 6); + let r = solve(&input); + + std::fs::write(args.outfilename, r).unwrap(); } diff --git a/closest_string_assignment_2/string-1.in b/closest_string_assignment_2/string-1.in new file mode 100644 index 0000000..fb47e42 --- /dev/null +++ b/closest_string_assignment_2/string-1.in @@ -0,0 +1,4 @@ +3 +ABCFGDCGEBA +BBDAGDBGBEC +BAEFCACGBBF diff --git a/closest_string_assignment_2/test.lp b/closest_string_assignment_2/test.lp new file mode 100644 index 0000000..f7777da --- /dev/null +++ b/closest_string_assignment_2/test.lp @@ -0,0 +1,442570 @@ +\ Model model1 +\ LP format - for model browsing. Use MPS format to capture full model detail. +Minimize + D +Subject To + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + = 105 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + = 109 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + = 91 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]: + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + = 92 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + = 111 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]: + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + = 85 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]: + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + = 103 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]: + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + = 88 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + = 102 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + = 116 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]: + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + = 102 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]: + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + = 92 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]: + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + = 92 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + = 113 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + = 84 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + = 97 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + = 102 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]: + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + = 89 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + = 93 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + = 85 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + = 94 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]: + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + = 114 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + = 89 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + = 97 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]: + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + = 96 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + = 98 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]: + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + = 86 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + = 98 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + = 111 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]: + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + = 107 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + = 94 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + = 101 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]: + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + = 97 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + = 111 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]: + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + = 115 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]: + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + = 103 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + = 104 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]: + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + = 81 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + = 118 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]: + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + = 110 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + = 97 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + = 109 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + = 96 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + = 103 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]: + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + = 106 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + = 104 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]: + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + = 77 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + = 76 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + = 83 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + = 104 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]: + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + = 123 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]: + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + = 101 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]: + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + = 115 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + = 97 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]: + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + = 111 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]: + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + = 112 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + = 98 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + = 112 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]: + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + = 111 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + = 102 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]: + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + = 111 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + = 111 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]: + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + = 97 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + = 87 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + = 110 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]: + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + = 122 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]: + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + = 112 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + = 110 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + = 110 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + = 81 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + = 90 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + = 93 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]: + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + = 100 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + = 103 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]: + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + = 92 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]: + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + = 88 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]: + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + = 95 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]: + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]: + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + = 105 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]: + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + = 91 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + = 96 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]: + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + = 87 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]: + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + = 106 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + = 105 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + = 100 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + = 104 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]: + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + = 109 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + = 120 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]: + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + = 110 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + = 114 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + = 91 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]: + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + = 104 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + = 86 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + = 112 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + = 95 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + = 97 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]: + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + = 109 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + = 99 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]: + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + = 99 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + = 113 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + = 111 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]: + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + = 126 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]: + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + = 101 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]: + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + = 93 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + = 94 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]: + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + = 95 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]: + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + = 119 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]: + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + = 97 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]: + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + = 90 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + = 113 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]: + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + = 87 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + = 95 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]: + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + = 89 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]: + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + = 95 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]: + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + = 84 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + = 111 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + = 95 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]: + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + = 98 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + = 123 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + = 86 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + = 105 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + = 89 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + = 112 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + = 82 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]: + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + = 95 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + = 93 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]: + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + = 100 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]: + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + = 90 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + = 109 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + = 91 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]: + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + = 106 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + = 98 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]: + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + = 107 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]: + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + = 88 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]: + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + = 98 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + = 89 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]: + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + = 93 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]: + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + = 107 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]: + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + = 81 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]: + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + = 109 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]: + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + = 123 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + = 84 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + = 120 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + = 100 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + = 93 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + = 106 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]: + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + = 103 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + = 101 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]: + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + = 83 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]: + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + = 93 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + = 95 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + = 115 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + = 115 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + = 117 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + = 110 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + = 102 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]: + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + = 99 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]: + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + = 101 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]: + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + = 98 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]: + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + = 105 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + = 99 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]: + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + = 81 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]: + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + = 97 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]: + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + = 91 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]: + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + = 91 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]: + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + = 102 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + = 101 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]: + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + = 78 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]: + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + = 111 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]: + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + = 93 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]: + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + = 110 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + = 93 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]: + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + = 101 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]: + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + = 106 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]: + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + = 101 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]: + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + = 97 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]: + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + = 132 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]: + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + = 86 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]: + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + = 95 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + = 94 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]: + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + = 102 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]: + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + = 107 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]: + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + = 85 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + = 99 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]: + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + = 114 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]: + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + = 101 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]: + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + = 106 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + = 118 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + = 85 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]: + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + = 114 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + = 103 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + = 99 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + = 105 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + = 78 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]: + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + = 88 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + = 95 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]: + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + = 87 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]: + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + = 105 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + = 100 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]: + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + = 77 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + = 79 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]: + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + = 83 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + = 85 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]: + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + = 104 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]: + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + = 86 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + = 109 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + = 93 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + = 106 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]: + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + = 104 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]: + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + = 89 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]: + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + = 107 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]: + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + = 107 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]: + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + = 104 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]: + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + = 91 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]: + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + = 95 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]: + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + = 98 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]: + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + = 96 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]: + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + = 89 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + = 114 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + = 108 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]: + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + = 115 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + = 79 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]: + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + = 90 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]: + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + = 125 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]: + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + = 114 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + = 90 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + = 83 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + = 103 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + = 113 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]: + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + = 104 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + = 113 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]: + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + = 108 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]: + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + = 86 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + = 102 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + = 109 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + = 104 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]: + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + = 95 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]: + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + = 88 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + = 114 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + = 95 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + = 111 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]: + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + = 103 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + = 82 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]: + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + = 100 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + = 91 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]: + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + = 113 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + = 117 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + = 92 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]: + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + = 129 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + = 88 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + = 85 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + = 104 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + = 98 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]: + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + = 99 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + = 96 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]: + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + = 98 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]: + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + = 121 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + = 101 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]: + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + = 112 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + = 112 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]: + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + = 105 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + = 95 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]: + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + = 91 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]: + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + = 105 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + = 104 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + = 95 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + = 109 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]: + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + = 88 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]: + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + = 104 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]: + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + = 108 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]: + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + = 115 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]: + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + = 92 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]: + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + = 95 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]: + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + = 104 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + = 96 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]: + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + = 96 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]: + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + = 119 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]: + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + = 88 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + = 111 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]: + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + = 93 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]: + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + = 94 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]: + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + = 98 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + = 113 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + = 98 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + = 104 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]: + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + = 107 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + = 97 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]: + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + = 89 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + = 100 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + = 80 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + = 110 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + = 79 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + = 86 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + = 106 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + = 107 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]: + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + = 89 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]: + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + = 108 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + = 118 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + = 119 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + = 128 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + = 110 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]: + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + = 88 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]: + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + = 90 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + = 86 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + = 92 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + = 88 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + = 129 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]: + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + = 87 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]: + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + = 116 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + = 121 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + = 96 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]: + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + = 94 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]: + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + = 92 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]: + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + = 111 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]: + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + = 91 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]: + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + = 97 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + = 103 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]: + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + = 85 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]: + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + = 93 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + = 107 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]: + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + = 88 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]: + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + = 119 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]: + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + = 113 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + = 103 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + = 110 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]: + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + = 90 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]: + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + = 88 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + = 91 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]: + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + = 117 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]: + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + = 94 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]: + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + = 110 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + = 95 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]: + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + = 96 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]: + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + = 90 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + = 129 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]: + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + = 95 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + = 84 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + = 105 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]: + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + = 95 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]: + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + = 105 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]: + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + = 121 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + = 121 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + = 111 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + = 97 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + = 90 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]: + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + = 109 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + = 105 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]: + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + = 105 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + = 91 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]: + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + = 118 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + = 105 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + = 118 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]: + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + = 94 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + = 94 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]: + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + = 107 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + = 104 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + = 101 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + = 79 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + = 106 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]: + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + = 108 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]: + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + = 102 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]: + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + = 102 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]: + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + = 89 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]: + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + = 82 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + = 95 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + = 124 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]: + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + = 107 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + = 92 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + = 105 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + = 98 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + = 98 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + = 84 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]: + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + = 86 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + = 111 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]: + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + = 83 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]: + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + = 98 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + = 104 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + = 91 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + = 113 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]: + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + = 102 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + = 101 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + = 114 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]: + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + = 86 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + = 132 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]: + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + = 108 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]: + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + = 104 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + = 90 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]: + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + = 94 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + = 97 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]: + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + = 100 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]: + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + = 107 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + = 107 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]: + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + = 95 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + = 101 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + = 76 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + = 109 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]: + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + = 111 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + = 97 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + = 108 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + = 102 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + = 99 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]: + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + = 103 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]: + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + = 103 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]: + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + = 86 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + = 104 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]: + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + = 99 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + = 105 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]: + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + = 102 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]: + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + = 103 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]: + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + = 97 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]: + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + = 125 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + = 117 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + = 90 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + = 111 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + = 98 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]: + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + = 91 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + = 125 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + = 86 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + = 109 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + = 109 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + = 92 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]: + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + = 88 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + = 85 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + = 99 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]: + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + = 119 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + = 112 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + = 87 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + = 107 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]: + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + = 96 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]: + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + = 96 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]: + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + = 97 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + = 105 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + = 86 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + = 108 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]: + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + = 104 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]: + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + = 106 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]: + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + = 87 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + = 107 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]: + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + = 94 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]: + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + = 110 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + = 88 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + = 89 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + = 110 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]: + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + = 116 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + = 93 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]: + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + = 75 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + = 113 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + = 109 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + = 112 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + = 115 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + = 109 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + = 89 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + = 112 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + = 113 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + = 87 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + = 98 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]: + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + = 84 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]: + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + = 107 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + = 96 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + = 97 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]: + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + = 81 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]: + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + = 101 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]: + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + = 100 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]: + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + = 89 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + = 102 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]: + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + = 92 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]: + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + = 116 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + = 113 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]: + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + = 105 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + = 121 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]: + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + = 90 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]: + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + = 106 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]: + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + = 82 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]: + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + = 98 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]: + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + = 103 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + = 105 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + = 91 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + = 101 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]: + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + = 94 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + = 108 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + = 89 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + = 90 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + = 102 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]: + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + = 121 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]: + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + = 114 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + = 92 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + = 91 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]: + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + = 98 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + = 96 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]: + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + = 65 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]: + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + = 102 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]: + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + = 83 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + = 105 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]: + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + = 112 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]: + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + = 105 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]: + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + = 114 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + = 85 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]: + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + = 95 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + = 109 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]: + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + = 105 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]: + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + = 95 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + = 99 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]: + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + = 103 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + = 101 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]: + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + = 108 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + = 106 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + = 102 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + = 97 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + = 101 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]: + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + = 77 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + = 83 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]: + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + = 100 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + = 100 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]: + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + = 90 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]: + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + = 88 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]: + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + = 92 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]: + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + = 96 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]: + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + = 108 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + = 108 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + = 116 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]: + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + = 88 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + = 95 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]: + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + = 95 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + = 107 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + = 102 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + = 120 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]: + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + = 98 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]: + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + = 86 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]: + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + = 101 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + = 115 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + = 93 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]: + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + = 102 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + = 99 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]: + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + = 119 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]: + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + = 101 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + = 112 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]: + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + = 96 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]: + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + = 92 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]: + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + = 93 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + = 111 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + = 108 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]: + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + = 110 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + = 86 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]: + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + = 96 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]: + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + = 102 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + = 92 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + = 112 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]: + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + = 92 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]: + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + = 122 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]: + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + = 111 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + = 117 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]: + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + = 119 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + = 111 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + = 82 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + = 80 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]: + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + = 101 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + = 96 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + = 100 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + = 79 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + = 96 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]: + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + = 111 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]: + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + = 108 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]: + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + = 90 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]: + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + = 93 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + = 114 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + = 105 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + = 93 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]: + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + = 115 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + = 113 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + = 95 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + = 91 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]: + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + = 123 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + = 98 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]: + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + = 82 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + = 107 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]: + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + = 95 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]: + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + = 95 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]: + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + = 110 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]: + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + = 101 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + = 103 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]: + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + = 109 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]: + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + = 116 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + = 110 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]: + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + = 89 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + = 91 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + = 89 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + = 88 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]: + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + = 106 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + = 103 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]: + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + = 112 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + = 109 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + = 98 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]: + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + = 107 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + = 120 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + = 94 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]: + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + = 106 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]: + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + = 104 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]: + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + = 89 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]: + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + = 116 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]: + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + = 88 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + = 93 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]: + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + = 101 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]: + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + = 102 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + = 92 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]: + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + = 107 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]: + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + = 100 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + = 113 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]: + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + = 107 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]: + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + = 98 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]: + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + = 102 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + = 104 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + = 103 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]: + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + = 77 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]: + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + = 86 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]: + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + = 99 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]: + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + = 86 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + = 120 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]: + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + = 85 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]: + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + = 83 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]: + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + = 93 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + = 106 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]: + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + = 100 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]: + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + = 84 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + = 116 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]: + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + = 97 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + = 105 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]: + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + = 97 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + = 94 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + = 112 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + = 112 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + = 106 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]: + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + = 110 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + = 98 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]: + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + = 91 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + = 106 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]: + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + = 116 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]: + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + = 114 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + = 111 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]: + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + = 83 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + = 109 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + = 113 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]: + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + = 106 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + = 110 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + = 98 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]: + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + = 109 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + = 101 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]: + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + = 108 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + = 87 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]: + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + = 114 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]: + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + = 102 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + = 102 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]: + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + = 122 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + = 87 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + = 84 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]: + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + = 88 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]: + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + = 100 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + = 85 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]: + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + = 107 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + = 100 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + = 115 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]: + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + = 101 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + = 104 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]: + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + = 82 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + = 104 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + = 92 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + = 103 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]: + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + = 99 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]: + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + = 100 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + = 93 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + = 106 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + = 88 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]: + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + = 85 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + = 110 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + = 107 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]: + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + = 105 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + = 94 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + = 95 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]: + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + = 106 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]: + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + = 97 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]: + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + = 104 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + = 103 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]: + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + = 98 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]: + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + = 105 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]: + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + = 121 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]: + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + = 106 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]: + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + = 95 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]: + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + = 108 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + = 101 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]: + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + = 93 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]: + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + = 96 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]: + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + = 81 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + = 95 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]: + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + = 116 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + = 95 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]: + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + = 107 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]: + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + = 90 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]: + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + = 85 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]: + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + = 106 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]: + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + = 96 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]: + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + = 113 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + = 102 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]: + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + = 117 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + = 85 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + = 89 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + = 83 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]: + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + = 120 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + = 92 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + = 108 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]: + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + = 96 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]: + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + = 108 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]: + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + = 91 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + = 99 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]: + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + = 91 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + = 90 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]: + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + = 90 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]: + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + = 86 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]: + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + = 95 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]: + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + = 113 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]: + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + = 95 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + = 98 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + = 119 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + = 102 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]: + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + = 88 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]: + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + = 99 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + = 125 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]: + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + = 102 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + = 95 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]: + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + = 104 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]: + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + = 106 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + = 105 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]: + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + = 108 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]: + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + = 90 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]: + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + = 105 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]: + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + = 109 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + = 89 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]: + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + = 88 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + = 81 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]: + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + = 107 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]: + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + = 94 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + = 104 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]: + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + = 96 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + = 87 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]: + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + = 97 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + = 91 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]: + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + = 101 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]: + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + = 101 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + = 107 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + = 106 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]: + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + = 105 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]: + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + = 95 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]: + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + = 94 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + = 97 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]: + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + = 108 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]: + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + = 97 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]: + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + = 104 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]: + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + = 103 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]: + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + = 101 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]: + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + = 96 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]: + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + = 91 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]: + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + = 104 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + = 122 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + = 90 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]: + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + = 101 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + = 104 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]: + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + = 98 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + = 100 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + = 126 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + = 108 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]: + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + = 93 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]: + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + = 87 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + = 114 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]: + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + = 103 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + = 103 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]: + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + = 105 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]: + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + = 103 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]: + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + = 122 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + = 100 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]: + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + = 90 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]: + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + = 87 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]: + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + = 82 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]: + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + = 103 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + = 90 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]: + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + = 74 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]: + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + = 90 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]: + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + = 111 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]: + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + = 99 + 0: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 1: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 2: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 3: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 4: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 5: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 6: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 7: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 8: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 9: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 10: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 11: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 12: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 13: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 14: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 15: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 16: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 17: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 18: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 19: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 20: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 21: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 22: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 23: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + - D <= 0 + 24: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 + 25: + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + - D <= 0 +Bounds +Generals + + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_6,_8,_9,_10,_11,_12,_11,_13,_14,_6,_15,_16,_15,_2,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_3,_2,_8,_7,_9,_10,_1,_11,_3,_0,_12,_3,_13,_14,_15,_12,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_4,_5,_14,_9,_0,_15,_4,_5,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_12,_4,_13,_14,_3,_13,_13,_0,_6,_12,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_3,_10,_11,_12,_13,_14,_4,_7,_8,_15,_16,_15,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_7,_13,_14,_8,_4,_9,_15,_16,_12,_17,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_0,_11,_3,_11,_13,_14,_1,_3,_8,_4,_0,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_7,_8,_9,_10,_2,_11,_12,_13,_2,_10,_2,_14,_15,_3,_16,_2,_2]_16 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_0 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_1 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_2 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_3 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_4 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_5 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_6 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_7 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_8 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_9 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_10 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_11 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_12 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_13 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_14 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_7,_8,_6,_12,_4,_12,_4,_13,_14,_15,_14]_15 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_0 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_1 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_2 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_3 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_4 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_5 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_6 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_7 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_8 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_9 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_10 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_11 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_12 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_13 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_14 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_15 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_16 + [0,_1,_2,_2,_3,_4,_0,_2,_5,_6,_7,_8,_9,_9,_10,_11,_12,_5,_13,_0,_14,_12,_15,_16,_17,_4]_17 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_9,_12,_8,_6,_2,_11,_8,_11,_13,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_8,_9,_10,_0,_1,_11,_12,_13,_14,_12,_3,_5,_7,_2,_13,_13]_14 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_0 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_1 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_2 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_3 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_4 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_5 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_6 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_7 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_8 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_9 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_10 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_11 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_12 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_13 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_14 + [0,_1,_2,_2,_3,_4,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_12,_7,_1,_13,_14,_13,_15,_15,_12,_12]_15 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_0 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_1 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_2 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_3 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_4 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_5 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_6 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_7 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_8 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_9 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_10 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_11 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_12 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_13 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_14 + [0,_1,_2,_3,_2,_4,_5,_4,_6,_7,_8,_9,_8,_0,_2,_4,_10,_11,_7,_12,_1,_13,_5,_14,_15,_12]_15 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_0 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_1 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_2 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_3 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_4 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_5 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_6 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_7 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_8 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_9 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_10 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_11 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_12 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_13 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_14 + [0,_0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_6,_10,_11,_12,_5,_6,_13,_5,_8,_14,_12,_9,_15]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_11,_7,_10,_15,_7,_7,_16,_17,_5]_17 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_5,_4,_9,_10,_11,_12,_13,_13,_14,_9,_4,_10,_5,_14,_15]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_0,_6,_8,_13,_12,_14,_11,_7,_15,_6,_16]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_3,_8,_9,_8,_10,_11,_6,_6,_12,_1,_13,_7,_14,_15,_14,_16,_2]_16 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_0 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_1 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_2 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_3 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_4 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_5 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_6 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_7 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_8 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_9 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_10 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_11 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_12 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_13 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_14 + [0,_1,_2,_3,_2,_4,_5,_2,_6,_7,_8,_9,_1,_10,_4,_11,_9,_7,_12,_3,_13,_14,_2,_15,_1,_5]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_17 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_9,_10,_0,_11,_12,_1,_5,_13,_14,_15,_16,_17,_1,_18,_17]_18 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_7,_2,_9,_10,_1,_3,_5,_11,_12,_13,_8,_14,_12,_10,_6,_0]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_0,_8,_6,_11,_4,_12,_13,_8,_8,_9,_12,_14,_1,_15]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_6,_7,_5,_8,_9,_10,_1,_4,_11,_5,_12,_13,_2,_12,_5,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_8,_11,_11,_3,_10,_12,_8,_8,_10,_3,_3,_4,_10,_13]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_0,_9,_10,_11,_12,_11,_13,_2,_11,_1,_5,_3,_1,_10,_8,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_6,_8,_9,_8,_1,_5,_1,_1,_4,_10,_4,_11,_7,_0,_12,_2]_12 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_0 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_1 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_2 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_3 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_4 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_5 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_6 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_7 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_8 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_9 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_10 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_11 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_12 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_13 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_14 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_2,_10,_11,_6,_12,_0,_13,_14,_1,_15,_12,_11,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_0,_9,_9,_5,_1,_10,_3,_11,_1,_12,_6,_1,_13,_14,_9,_14]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_0,_15,_1,_16,_11,_5]_16 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_0 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_1 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_2 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_3 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_4 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_5 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_6 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_7 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_8 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_9 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_10 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_11 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_12 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_13 + [0,_1,_2,_3,_4,_4,_2,_0,_2,_5,_6,_7,_7,_8,_9,_8,_10,_0,_11,_12,_11,_13,_13,_8,_12,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_6,_9,_10,_11,_10,_10,_6,_12,_13,_11,_3,_14,_4,_1,_12,_15]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_10,_11,_10,_5,_12,_10,_13,_7,_14,_15,_10,_16,_4,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_10,_11,_12,_11,_5,_4,_13,_2,_4,_14,_8,_6,_14,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_3,_8,_7,_9,_10,_8,_11,_12,_13,_14,_0,_15,_16,_17,_14,_5,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_11,_14,_9,_7,_15,_16,_7,_17,_17,_6,_0]_17 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_7,_8,_9,_10,_7,_11,_12,_13,_5,_9,_5,_3,_2,_11,_8,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_8,_7,_8,_5,_4,_10,_6,_3,_0,_1,_12,_6,_6]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_3,_9,_5,_7,_10,_11,_12,_13,_14,_15,_0,_10,_16,_1,_15]_16 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_0 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_1 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_2 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_3 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_4 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_5 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_6 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_7 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_8 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_9 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_10 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_11 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_12 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_13 + [0,_0,_1,_1,_2,_3,_4,_5,_6,_0,_7,_8,_5,_2,_9,_3,_0,_10,_11,_12,_13,_5,_1,_8,_10,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_9,_16,_17,_18,_17,_7,_19,_16,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_7,_9,_6,_10,_11,_12,_13,_14,_15,_9,_4,_16,_0,_9,_5]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_1,_4,_7,_2,_8,_9,_1,_9,_10,_11,_8,_8,_6,_12,_1,_13,_7,_14]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_9,_6,_11,_9,_12,_13,_14,_5,_15,_0,_4,_6,_8]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_8,_8,_10,_11,_12,_13,_14,_15,_1,_9,_15,_1,_1,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_1,_10,_11,_2,_1,_12,_11,_13,_14,_7,_12,_13,_1,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_7,_6,_9,_4,_10,_11,_12,_13,_2,_7,_14,_8,_15,_16,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_0 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_1 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_2 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_3 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_4 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_5 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_6 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_7 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_8 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_9 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_10 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_11 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_12 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_13 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_14 + [0,_1,_2,_3,_4,_5,_2,_0,_6,_7,_8,_9,_5,_10,_11,_12,_13,_1,_14,_6,_5,_15,_5,_13,_2,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_1,_11,_12,_0,_12,_8,_13,_5,_14,_7,_15,_5,_16,_17]_17 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_6,_7,_8,_9,_10,_2,_11,_9,_12,_10,_6,_13,_1,_14,_7,_4,_15,_16]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_3,_5,_10,_11,_12,_13,_3,_13,_2,_14,_15,_16,_4,_0,_15]_16 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_16 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_6,_11,_6,_10,_5,_16,_13,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_2,_2,_6,_9,_10,_11,_12,_13,_0,_14,_15,_6,_7,_16,_17,_1]_17 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_8,_10,_0,_11,_2,_5,_8,_11,_12,_13,_14,_7,_15]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_6,_8,_9,_3,_10,_9,_8,_4,_4,_2,_11,_12,_13,_0,_13,_14]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_8,_7,_7,_4,_9,_10,_2,_11,_7,_12,_13,_14,_5,_1,_15,_0]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_5,_7,_8,_7,_9,_10,_1,_11,_9,_5,_10,_12,_13,_14,_15,_13,_2,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_13,_3,_12,_11,_7,_14,_15,_16,_17,_7,_7,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_11,_13,_14,_15,_16,_3,_2,_17,_18,_19,_18,_20]_20 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_2,_8,_3,_9,_6,_7,_9,_3,_3,_3,_10,_8,_9,_5,_0,_11]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_0,_9,_10,_11,_7,_5,_12,_10,_13,_6,_12,_14,_15,_2,_6,_3]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_3,_7,_8,_9,_2,_10,_6,_6,_11,_12,_1,_6,_13,_14,_1,_15,_16,_17]_17 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_0 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_1 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_2 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_3 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_4 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_5 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_6 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_7 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_8 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_9 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_10 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_11 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_12 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_13 + [0,_1,_2,_1,_3,_2,_3,_4,_5,_0,_5,_6,_7,_6,_0,_1,_8,_7,_9,_5,_10,_11,_12,_13,_14,_1]_14 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_0 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_1 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_2 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_3 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_4 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_5 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_6 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_7 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_8 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_9 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_10 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_11 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_12 + [0,_1,_2,_3,_4,_5,_3,_0,_2,_6,_7,_0,_8,_5,_9,_10,_5,_11,_12,_7,_7,_1,_13,_3,_10,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_6,_10,_6,_6,_11,_12,_13,_5,_5,_14,_15,_16,_2,_17,_18]_18 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_2,_8,_4,_9,_7,_10,_0,_11,_12,_3,_4,_1,_13,_14,_15,_16,_0]_16 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_3,_7,_8,_7,_9,_10,_11,_12,_2,_13,_14,_15,_3,_16,_15,_14,_3,_6]_16 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_0 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_1 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_2 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_3 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_4 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_5 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_6 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_7 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_8 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_9 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_10 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_11 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_12 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_13 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_14 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_15 + [0,_1,_1,_2,_0,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_12,_9,_13,_10,_14,_11,_4,_15,_0,_6,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_8,_9,_3,_5,_10,_5,_0,_11,_12,_6,_13,_13,_14,_9,_8]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_16 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_17 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_0,_11,_12,_6,_13,_14,_15,_16,_17,_18,_18,_4,_15]_18 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_17 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_2,_12,_13,_11,_11,_14,_15,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_5,_7,_8,_1,_9,_10,_11,_12,_11,_6,_8,_13,_14,_15,_4,_16,_3,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_5,_1,_2,_1,_9,_10,_4,_3,_11,_0,_12,_13,_7,_1,_14,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_14,_3,_15,_16,_14,_14,_14,_17,_17,_5,_1]_17 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_9,_5,_0,_10,_2,_11,_12,_13,_11,_14,_15,_8,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_0 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_1 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_2 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_3 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_4 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_5 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_6 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_7 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_8 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_9 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_10 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_11 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_12 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_8,_9,_4,_10,_9,_10,_10,_11,_8,_7,_12,_3,_3,_12,_0,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_0,_10,_11,_0,_12,_3,_13,_14,_8,_3,_11,_15,_16,_1,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_7,_11,_12,_13,_9,_14,_11,_8,_15,_12,_13,_14,_8]_15 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_8,_3,_9,_4,_5,_10,_3,_11,_2,_11,_5,_8,_12,_10,_13,_14]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_3,_8,_9,_1,_10,_7,_11,_8,_12,_13,_10,_14,_13,_15,_2,_11,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_5,_1,_8,_1,_3,_9,_4,_10,_11,_12,_2,_13,_14,_6,_8,_0,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_4,_8,_9,_2,_10,_11,_4,_2,_3,_4,_0,_4,_3,_0,_12,_13]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_6,_0,_7,_8,_9,_9,_6,_10,_1,_0,_11,_12,_6,_8,_10,_13,_14,_2]_14 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_0 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_1 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_2 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_3 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_4 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_5 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_6 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_7 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_8 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_9 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_10 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_11 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_12 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_13 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_14 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_15 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_16 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_17 + [0,_1,_2,_3,_0,_4,_5,_1,_5,_6,_5,_7,_8,_9,_8,_1,_10,_11,_12,_13,_14,_15,_16,_17,_5,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_7,_7,_9,_2,_10,_10,_7,_3,_6,_11,_7,_12,_13,_8,_0,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_4,_6,_7,_1,_9,_10,_11,_0,_12,_10,_13,_10,_9,_2,_14,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_10,_11,_12,_13,_7,_0,_14,_2,_14,_14,_1,_2,_0,_15]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_3,_8,_12,_4,_12,_11,_13,_14,_5,_15,_10,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_10,_1,_1,_6,_12,_13,_14,_15,_0,_13,_16,_17,_18]_18 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_1,_4,_11,_6,_9,_12,_13,_5,_13,_14,_2,_15,_5]_15 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_0 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_1 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_2 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_3 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_4 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_5 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_6 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_7 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_8 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_9 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_10 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_11 + [0,_1,_2,_3,_0,_2,_4,_0,_4,_5,_2,_4,_2,_4,_6,_7,_8,_9,_10,_10,_11,_1,_1,_3,_6,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_9,_8,_10,_11,_12,_12,_13,_4,_3,_14,_15,_8,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_8,_12,_13,_14,_3,_5,_15,_13,_4,_2,_16,_15,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_2,_0,_5,_12,_8,_13,_11,_10,_5,_14,_12,_15,_0]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_7,_8,_3,_9,_10,_3,_1,_11,_0,_4,_7,_5,_12,_8,_4,_10,_10]_12 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_0 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_1 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_2 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_3 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_4 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_5 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_6 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_7 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_8 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_9 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_10 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_11 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_12 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_13 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_14 + [0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_8,_2,_5,_10,_7,_11,_8,_5,_7,_12,_11,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_3,_9,_10,_2,_11,_12,_1,_13,_14,_6,_10,_1,_15,_4,_15]_15 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_0 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_1 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_2 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_3 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_4 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_5 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_6 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_7 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_8 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_9 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_10 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_11 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_12 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_13 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_14 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_11,_10,_12,_4,_11,_13,_10,_6,_1,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_0 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_1 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_2 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_3 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_4 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_5 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_6 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_7 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_8 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_9 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_10 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_11 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_12 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_13 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_14 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_15 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_16 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_0,_10,_2,_11,_12,_4,_13,_14,_15,_16,_17,_2,_9,_15]_17 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_0 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_1 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_2 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_3 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_4 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_5 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_6 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_7 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_8 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_9 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_10 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_11 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_12 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_13 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_14 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_15 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_2,_7,_8,_9,_0,_10,_11,_7,_12,_6,_13,_12,_14,_7,_15,_2,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_3,_16,_16,_11,_17,_8,_13,_18]_18 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_0 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_1 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_2 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_3 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_4 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_5 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_6 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_7 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_8 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_9 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_10 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_11 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_12 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_13 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_14 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_15 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_16 + [0,_1,_2,_2,_0,_3,_4,_4,_5,_6,_6,_7,_8,_6,_9,_10,_10,_11,_12,_13,_14,_15,_15,_16,_1,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_6,_1,_6,_7,_8,_6,_7,_2,_4,_9,_10,_11,_7,_12,_10,_13,_9]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_1,_8,_3,_9,_1,_10,_11,_5,_12,_13,_3,_4,_3,_14,_2,_7,_2]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_15 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_16 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_5,_11,_3,_12,_13,_3,_5,_14,_10,_10,_15,_16,_17]_17 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_0,_8,_9,_10,_11,_2,_12,_0,_12,_13,_14,_2,_5,_15,_10,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_5,_10,_11,_9,_4,_3,_12,_13,_14,_15,_6,_10,_5,_7,_14]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_6,_7,_0,_8,_9,_8,_10,_10,_3,_11,_12,_13,_1,_14,_6,_0,_3]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_2,_4,_9,_3,_10,_11,_12,_13,_3,_14,_14,_6,_13,_13,_13,_14]_14 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_0 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_1 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_2 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_3 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_4 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_5 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_6 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_7 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_8 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_9 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_10 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_11 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_12 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_13 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_14 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_7,_11,_10,_14,_4,_3,_15,_3,_15,_10]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_1,_12,_13,_14,_14,_15,_11,_12,_2,_5,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_7,_11,_0,_12,_10,_10,_2,_13,_5,_7,_13,_14,_13,_6]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_2,_7,_7,_8,_2,_9,_0,_4,_2,_10,_11,_12,_1,_11,_0,_13,_0,_4]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_2,_4,_9,_10,_11,_12,_13,_3,_12,_5,_14,_1,_13,_8,_12,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_14,_6,_2,_2,_16,_15,_18]_18 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_7,_10,_8,_11,_11,_1,_5,_1,_0,_12,_13,_14,_15,_16,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_6,_4,_11,_4,_17,_18,_15,_10]_18 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_3,_3,_9,_0,_11,_12,_9,_13,_14,_4,_9,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_1,_8,_9,_0,_10,_11,_0,_12,_13,_11,_14,_2,_15,_16,_6,_17,_18]_18 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_0 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_1 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_2 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_3 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_4 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_5 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_6 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_7 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_8 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_9 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_10 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_11 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_12 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_13 + [0,_1,_2,_1,_3,_4,_5,_1,_6,_6,_7,_6,_0,_8,_9,_10,_6,_2,_11,_12,_13,_9,_6,_9,_14,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_3,_12,_4,_13,_14,_15,_16,_10,_13,_17,_18,_6,_3]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_6,_7,_4,_11,_12,_13,_14,_15,_12,_16,_17,_13,_17]_17 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_8,_9,_1,_10,_11,_1,_6,_12,_7,_11,_10,_0,_13,_1,_14,_15]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_0,_10,_11,_3,_3,_12,_13,_7,_7,_1,_14,_6,_15,_8,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_4,_9,_10,_11,_4,_7,_12,_13,_0,_0,_7,_1,_14,_15,_16,_7]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_9,_10,_0,_11,_12,_7,_13,_14,_15,_7,_16,_17,_16,_18,_3]_18 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_12,_13,_4,_1,_14,_0,_5,_9,_8,_15,_9,_14]_15 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_0 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_1 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_2 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_3 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_4 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_5 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_6 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_7 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_8 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_9 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_10 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_11 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_12 + [0,_1,_2,_2,_2,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_9,_9,_12,_0,_4,_3,_6,_0,_13,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_8,_9,_10,_11,_5,_2,_12,_13,_14,_12,_0,_2,_2,_2,_15,_8]_15 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_0 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_1 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_2 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_3 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_4 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_5 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_6 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_7 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_8 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_9 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_10 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_11 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_12 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_13 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_14 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_15 + [0,_1,_2,_3,_4,_1,_2,_5,_6,_5,_7,_8,_9,_0,_10,_6,_11,_4,_1,_9,_12,_13,_14,_15,_16,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_10,_11,_12,_13,_14,_15,_11,_11,_7,_15,_10,_1,_1,_7]_15 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_0 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_1 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_2 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_3 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_4 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_5 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_6 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_7 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_8 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_9 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_10 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_11 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_12 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_13 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_14 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_15 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_16 + [0,_1,_2,_2,_3,_4,_5,_1,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_7,_12,_3,_14,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_5,_9,_10,_2,_11,_8,_1,_12,_13,_13,_14,_5,_3,_5,_12,_15]_15 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_0 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_1 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_2 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_3 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_4 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_5 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_6 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_7 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_8 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_9 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_10 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_11 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_3,_9,_5,_2,_10,_6,_8,_11,_12,_8,_12,_3]_12 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_0 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_1 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_2 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_3 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_4 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_5 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_6 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_7 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_8 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_9 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_10 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_11 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_12 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_13 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_14 + [0,_1,_2,_1,_1,_3,_4,_5,_6,_7,_8,_2,_5,_9,_1,_10,_11,_0,_12,_6,_7,_13,_13,_14,_15,_12]_15 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_0 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_1 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_2 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_3 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_4 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_5 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_6 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_7 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_8 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_9 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_10 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_11 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_12 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_13 + [0,_1,_2,_3,_4,_5,_5,_4,_6,_7,_8,_9,_8,_4,_10,_7,_11,_4,_12,_13,_1,_14,_14,_10,_2,_3]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_2,_1,_6,_7,_3,_8,_8,_9,_10,_11,_3,_12,_13,_14,_5,_0,_9,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_11,_9,_7,_7,_3,_1,_12,_1,_4,_13,_14,_11,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_6,_13,_12,_14,_6,_15,_13,_16,_2,_2,_2,_1]_16 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_0 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_1 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_2 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_3 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_4 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_5 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_6 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_7 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_8 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_9 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_10 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_11 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_12 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_13 + [0,_1,_2,_3,_4,_4,_1,_5,_5,_6,_5,_7,_8,_5,_6,_9,_10,_0,_1,_11,_2,_12,_7,_13,_10,_14]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_6,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_5,_15,_16,_11,_3]_16 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_0 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_1 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_2 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_3 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_4 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_5 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_6 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_7 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_8 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_9 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_10 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_11 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_12 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_13 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_14 + [0,_1,_1,_2,_3,_1,_4,_5,_1,_6,_7,_2,_8,_9,_10,_11,_12,_13,_2,_8,_4,_4,_12,_13,_14,_15]_15 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_0 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_1 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_2 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_3 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_4 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_5 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_6 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_7 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_8 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_9 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_10 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_11 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_12 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_13 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_14 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_0,_7,_4,_8,_4,_9,_10,_4,_11,_2,_12,_13,_4,_14,_15,_12,_8]_15 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_0 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_1 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_2 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_3 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_4 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_5 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_6 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_7 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_8 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_9 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_10 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_11 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_12 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_13 + [0,_1,_2,_3,_4,_0,_5,_3,_3,_6,_7,_8,_9,_10,_4,_11,_12,_7,_9,_0,_6,_3,_13,_5,_2,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_6,_4,_10,_11,_12,_13,_0,_14,_15,_10,_16,_17,_10,_7]_17 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_1,_8,_9,_10,_4,_11,_2,_5,_12,_8,_13,_5,_14,_4,_15,_13,_16]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_0,_9,_5,_10,_11,_1,_8,_12,_8,_13,_14,_0,_4,_0,_15,_9]_15 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_0 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_1 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_2 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_3 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_4 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_5 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_6 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_7 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_8 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_9 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_10 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_11 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_12 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_13 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_14 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_15 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_16 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_17 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_18 + [0,_1,_2,_0,_3,_4,_5,_1,_6,_7,_7,_8,_9,_10,_11,_11,_12,_2,_13,_5,_14,_15,_16,_17,_18,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_11,_15,_1,_15,_16,_11,_16,_17,_6,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_13,_14,_10,_15,_16,_0,_5,_17,_0,_1,_5,_14]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_7,_9,_10,_6,_11,_5,_5,_12,_5,_2,_0,_13,_14,_15,_16,_4]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_13,_0,_2,_12,_14,_0,_15,_2,_10,_6,_16,_17]_17 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_16 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_7,_2,_10,_11,_12,_7,_13,_14,_6,_15,_15,_16,_17,_3,_14]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_8,_11,_7,_12,_13,_2,_0,_1,_13,_14,_15,_1,_10,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_7,_5,_3,_3,_8,_9,_10,_8,_11,_11,_12,_13,_14,_2,_13,_2,_4]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_4,_7,_0,_8,_3,_9,_8,_10,_11,_12,_11,_13,_8,_5,_2,_13,_12,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_6,_17,_11,_13,_17,_0,_4,_3]_17 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_6,_7,_9,_5,_7,_10,_8,_11,_6,_4,_12,_13,_2,_11,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_4,_9,_10,_11,_0,_11,_12,_6,_13,_9,_14,_15,_7,_8,_13]_15 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_0 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_1 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_2 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_3 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_4 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_5 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_6 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_7 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_8 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_9 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_10 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_11 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_12 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_13 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_14 + [0,_0,_1,_2,_3,_1,_4,_5,_0,_2,_0,_6,_4,_0,_7,_8,_1,_0,_9,_10,_11,_12,_13,_7,_14,_15]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_4,_10,_12,_5,_13,_14,_5,_7,_7,_0,_8,_5]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_3,_0,_8,_3,_9,_2,_10,_11,_12,_2,_13,_8,_14,_0,_6,_5,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_3,_0,_11,_6,_7,_11,_12,_13,_9,_14,_8,_10,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_4,_5,_5,_7,_5,_8,_1,_9,_10,_11,_12,_9,_13,_14,_13,_15,_16]_16 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_2,_5,_9,_6,_10,_3,_11,_12,_13,_11,_1,_7,_5,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_5,_13,_8,_12,_9,_14,_13,_2,_15,_10,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_8,_9,_10,_11,_12,_11,_4,_13,_14,_15,_0,_16,_3,_17,_18,_12]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_10,_10,_0,_1,_4,_9,_11,_0,_1,_4,_12,_13,_2,_2,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_2,_10,_10,_11,_12,_13,_14,_13,_11,_15,_8,_2,_1,_13,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_11,_3,_12,_13,_14,_6,_0,_7,_11,_2,_11,_9,_13,_3]_14 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_0 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_1 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_2 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_3 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_4 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_5 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_6 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_7 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_8 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_9 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_10 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_11 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_12 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_5,_3,_0,_6,_9,_6,_10,_2,_11,_0,_1,_6,_12,_13,_13]_13 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_0 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_1 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_2 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_3 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_4 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_5 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_6 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_7 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_8 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_9 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_10 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_11 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_12 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_13 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_14 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_15 + [0,_1,_2,_2,_3,_3,_4,_1,_5,_6,_7,_8,_9,_10,_7,_4,_11,_12,_13,_14,_15,_16,_14,_12,_8,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_4,_4,_7,_1,_6,_5,_3,_2,_8,_9,_10,_5,_3,_11,_11,_12,_8,_13]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_16 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_11,_12,_13,_1,_10,_14,_15,_16,_4,_17,_0,_11,_14,_16]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_0,_9,_10,_6,_0,_2,_11,_12,_13,_14,_15,_2,_6,_16,_17,_11]_17 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_3,_6,_6,_7,_8,_9,_10,_11,_8,_10,_12,_13,_14,_13,_0,_14,_9,_13]_14 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_0 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_1 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_2 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_3 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_4 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_5 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_6 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_7 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_8 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_9 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_10 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_11 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_12 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_13 + [0,_1,_2,_3,_4,_0,_5,_3,_6,_5,_7,_8,_0,_9,_7,_0,_9,_10,_6,_11,_11,_12,_5,_13,_4,_14]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_3,_14,_9,_15,_10,_14,_16,_17]_17 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_4,_6,_9,_10,_11,_12,_13,_6,_14,_10,_6,_14,_3,_15,_8]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_2,_7,_8,_0,_9,_2,_10,_7,_11,_12,_6,_13,_7,_14,_15,_7,_5,_0]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_1,_4,_7,_8,_4,_9,_1,_10,_11,_12,_13,_0,_14,_15,_2,_2,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_7,_16,_9,_17,_17,_18,_1,_19,_20,_15]_20 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_1,_4,_8,_9,_9,_10,_11,_12,_3,_13,_14,_15,_11,_16,_16,_17,_15]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_10,_11,_5,_12,_3,_13,_14,_1,_4,_15,_6,_7,_1,_16,_7]_16 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_10,_6,_11,_12,_5,_7,_12,_2,_13,_14,_15,_16,_12]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_5,_10,_7,_11,_3,_12,_13,_14,_15,_14,_7,_16,_17,_3,_9]_17 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_6,_4,_5,_1,_8,_10,_5,_11,_4,_12,_0,_13,_3,_7,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_16,_17,_1,_6,_18,_14,_5,_0,_16]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_5,_10,_11,_0,_12,_13,_14,_15,_7,_10,_6,_11,_8,_4,_9]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_7,_2,_8,_9,_10,_11,_12,_10,_2,_10,_0,_3,_13,_14,_3,_4,_15]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_17 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_18 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_4,_5,_1,_8,_9,_10,_11,_12,_13,_14,_6,_15,_16,_12,_17,_18,_19]_19 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_0 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_1 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_2 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_3 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_4 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_5 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_6 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_7 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_8 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_9 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_10 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_11 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_12 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_13 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_14 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_15 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_6,_6,_3,_7,_8,_1,_9,_10,_11,_12,_13,_14,_15,_6,_16,_15,_7]_16 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_0 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_1 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_2 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_3 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_4 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_5 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_6 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_7 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_8 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_9 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_10 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_11 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_12 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_13 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_14 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_15 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_16 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_17 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_18 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_19 + [0,_1,_2,_3,_1,_4,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_16,_15,_17,_11,_18,_19,_20]_20 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_7,_12,_4,_3,_3,_13,_14,_11,_12,_4,_5,_5,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_8,_10,_11,_12,_13,_14,_15,_4,_15,_16,_2,_17,_0,_18]_18 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_13,_12,_11,_0,_2,_13,_9,_7,_2,_14,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_1,_10,_11,_12,_13,_14,_15,_0,_9,_3,_16,_12,_11,_0,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_0,_8,_8,_9,_5,_0,_10,_11,_8,_7,_0,_12,_6,_12,_13,_14,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_9,_3,_9,_10,_5,_11,_12,_6,_1,_13,_14,_10,_14,_9,_15,_11]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_16 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_8,_9,_10,_11,_0,_12,_13,_14,_6,_7,_15,_12,_16,_17,_10,_11]_17 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_0 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_1 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_2 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_3 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_4 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_5 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_6 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_7 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_8 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_9 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_10 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_11 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_12 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_13 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_14 + [0,_1,_2,_3,_4,_5,_0,_5,_6,_7,_8,_1,_9,_0,_10,_9,_3,_10,_11,_0,_12,_13,_14,_9,_15,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_6,_6,_7,_4,_3,_8,_5,_9,_10,_11,_12,_13,_11,_14,_15,_0,_16,_6]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_7,_3,_8,_6,_9,_6,_10,_0,_11,_1,_12,_13,_4,_6,_14,_13,_7]_14 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_0 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_1 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_2 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_3 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_4 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_5 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_6 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_7 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_8 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_9 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_10 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_11 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_12 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_13 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_14 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_15 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_16 + [0,_0,_1,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_9,_10,_5,_11,_12,_13,_14,_15,_16,_2,_17,_9,_10]_17 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_16 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_2,_8,_9,_6,_1,_10,_11,_12,_5,_13,_14,_9,_9,_14,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_11,_3,_12,_12,_5,_3,_13,_14,_15,_16,_17,_0,_18]_18 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_0 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_1 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_2 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_3 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_4 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_5 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_6 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_7 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_8 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_9 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_10 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_11 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_12 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_13 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_14 + [0,_1,_2,_3,_4,_2,_2,_5,_0,_5,_6,_7,_8,_9,_2,_6,_8,_10,_11,_10,_12,_10,_13,_4,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_0,_6,_15,_16,_12,_17,_2,_18,_11,_17]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_6,_0,_8,_9,_10,_7,_6,_0,_2,_11,_4,_10,_12,_0,_13,_4,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_15,_16,_8,_17,_2,_10,_18,_13,_12,_19]_19 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_0 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_1 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_2 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_3 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_4 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_5 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_6 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_7 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_8 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_9 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_10 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_11 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_12 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_13 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_14 + [0,_1,_2,_3,_3,_4,_5,_4,_6,_7,_8,_6,_9,_10,_11,_12,_13,_11,_14,_7,_8,_10,_15,_8,_8,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_0,_10,_11,_10,_12,_9,_4,_10,_13,_14,_15,_16,_17,_17,_18]_18 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_0 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_1 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_2 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_3 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_4 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_5 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_6 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_7 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_8 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_9 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_10 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_11 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_12 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_13 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_14 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_15 + [0,_1,_2,_3,_1,_4,_0,_3,_0,_1,_5,_0,_6,_7,_8,_9,_2,_1,_10,_11,_12,_13,_14,_15,_12,_16]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_6,_3,_5,_7,_8,_7,_9,_10,_4,_2,_11,_12,_13,_14,_15,_16,_2,_0]_16 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_0 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_1 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_2 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_3 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_4 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_5 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_6 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_7 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_8 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_9 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_10 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_11 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_12 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_13 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_14 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_15 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_16 + [0,_1,_2,_3,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_6,_8,_1,_15,_16,_17,_13,_17]_17 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_1,_13,_7,_12,_14,_13,_9,_11,_14,_15,_7]_15 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_0 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_1 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_2 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_3 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_4 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_5 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_6 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_7 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_8 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_9 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_10 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_11 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_12 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_13 + [0,_1,_2,_3,_3,_4,_5,_3,_2,_6,_3,_7,_8,_6,_9,_10,_11,_8,_0,_12,_13,_14,_14,_11,_2,_4]_14 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_0 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_1 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_2 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_3 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_4 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_5 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_6 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_7 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_8 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_9 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_10 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_11 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_12 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_13 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_14 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_5,_9,_10,_0,_11,_12,_9,_9,_13,_13,_5,_11,_14,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_0 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_1 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_2 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_3 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_4 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_5 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_6 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_7 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_8 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_9 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_10 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_11 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_12 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_13 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_14 + [0,_1,_2,_3,_4,_5,_0,_4,_6,_7,_8,_9,_6,_10,_11,_12,_8,_5,_9,_13,_14,_4,_10,_5,_15,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_6,_2,_9,_7,_3,_1,_6,_10,_11,_11,_8,_10,_12,_9,_13,_9]_13 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_0 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_1 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_2 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_3 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_4 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_5 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_6 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_7 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_8 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_9 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_10 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_11 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_12 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_1,_0,_10,_0,_11,_5,_5,_4,_6,_2,_12,_5,_13,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_3,_9,_10,_11,_12,_13,_8,_8,_14,_15,_11,_16,_17,_10,_18,_19]_19 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_17 + [0,_1,_2,_3,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_6,_0,_13,_14,_15,_16,_10,_17,_18,_17,_18]_18 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_16 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_0,_3,_12,_7,_13,_14,_10,_12,_15,_16,_17,_15]_17 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_0 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_1 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_2 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_3 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_4 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_5 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_6 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_7 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_8 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_9 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_10 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_11 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_12 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_13 + [0,_1,_2,_3,_3,_4,_2,_5,_6,_7,_6,_8,_1,_9,_0,_10,_7,_5,_10,_11,_12,_1,_11,_11,_13,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_3,_4,_1,_8,_0,_9,_10,_4,_11,_4,_12,_11,_13,_14,_15,_0]_15 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_0 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_1 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_2 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_3 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_4 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_5 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_6 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_7 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_8 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_9 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_10 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_11 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_12 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_13 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_14 + [0,_1,_2,_2,_3,_4,_2,_5,_6,_7,_8,_7,_7,_9,_0,_4,_10,_11,_3,_12,_4,_2,_13,_14,_10,_15]_15 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_0 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_1 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_2 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_3 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_4 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_5 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_6 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_7 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_8 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_9 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_10 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_11 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_12 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_13 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_14 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_15 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_16 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_17 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_18 + [0,_1,_2,_3,_4,_3,_2,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_14,_15,_16,_17,_6,_14,_16,_18,_19]_19 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_0 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_1 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_2 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_3 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_4 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_5 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_6 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_7 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_8 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_9 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_10 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_11 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_12 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_13 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_7,_8,_4,_12,_0,_0,_13,_14,_6,_9,_14,_7]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_16 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_4,_7,_11,_12,_9,_2,_13,_11,_14,_15,_1,_3,_16,_17]_17 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_0 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_1 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_2 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_3 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_4 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_5 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_6 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_7 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_8 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_9 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_10 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_11 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_12 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_13 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_14 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_15 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_16 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_8,_0,_8,_9,_10,_11,_12,_13,_14,_15,_8,_16,_8,_8,_17,_5]_17 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_0 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_1 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_2 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_3 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_4 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_5 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_6 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_7 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_8 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_9 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_10 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_11 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_12 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_13 + [0,_1,_2,_0,_3,_4,_5,_0,_2,_6,_1,_7,_3,_1,_8,_7,_7,_9,_1,_9,_10,_0,_11,_12,_13,_14]_14 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_0 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_1 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_2 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_3 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_4 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_5 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_6 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_7 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_8 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_9 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_10 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_11 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_12 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_13 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_14 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_15 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_16 + [0,_1,_2,_3,_0,_4,_5,_0,_6,_7,_8,_9,_8,_8,_10,_11,_12,_5,_11,_13,_2,_14,_9,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_11,_5,_15,_16,_1,_3,_17,_18,_8,_15]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_7,_13,_0,_14,_7,_1,_15,_16,_17,_14,_3,_12,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_3,_12,_12,_13,_3,_8,_7,_14,_8,_15,_9,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_4,_8,_9,_10,_1,_6,_11,_12,_10,_13,_4,_14,_11,_2,_5,_5,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_9,_11,_9,_12,_13,_14,_8,_10,_15,_16,_0,_3,_7,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_7,_11,_12,_13,_14,_15,_16,_17,_18,_3,_2,_10]_18 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_0 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_1 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_2 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_3 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_4 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_5 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_6 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_7 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_8 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_9 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_10 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_11 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_12 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_13 + [0,_0,_1,_2,_3,_4,_5,_1,_6,_7,_6,_1,_8,_0,_9,_10,_9,_1,_4,_6,_11,_12,_9,_13,_14,_2]_14 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_0 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_1 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_2 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_3 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_4 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_5 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_6 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_7 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_8 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_9 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_10 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_11 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_12 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_13 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_14 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_15 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_16 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_17 + [0,_1,_2,_2,_3,_4,_5,_3,_4,_6,_7,_6,_8,_9,_10,_11,_12,_11,_13,_14,_15,_16,_17,_16,_18,_15]_18 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_0 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_1 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_2 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_3 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_4 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_5 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_6 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_7 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_8 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_9 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_10 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_11 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_12 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_13 + [0,_1,_2,_3,_4,_4,_3,_5,_6,_7,_8,_7,_9,_7,_10,_6,_11,_9,_6,_12,_1,_13,_4,_10,_14,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_5,_12,_10,_4,_13,_4,_14,_15,_16,_17,_0,_16,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_5,_7,_16,_1,_15,_11,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_7,_9,_10,_4,_11,_10,_6,_0,_12,_6,_8,_13,_14,_1,_8,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_1,_10,_11,_12,_6,_1,_13,_5,_14,_0,_8,_15,_9,_16]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_10,_11,_12,_13,_14,_7,_9,_4,_15,_11,_3,_16,_6,_6]_16 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_0 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_1 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_2 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_3 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_4 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_5 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_6 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_7 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_8 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_9 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_10 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_11 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_12 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_13 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_14 + [0,_1,_2,_0,_3,_4,_0,_2,_5,_6,_6,_7,_3,_8,_1,_9,_10,_11,_11,_8,_12,_9,_13,_14,_0,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_7,_9,_10,_11,_12,_5,_12,_3,_3,_13,_5,_1,_3,_1,_14,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_2,_12,_13,_5,_11,_12,_14,_11,_11,_15,_10,_16,_17]_17 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_5,_10,_8,_11,_12,_7,_8,_7,_13,_9,_14,_1,_9,_15]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_3,_10,_11,_12,_5,_4,_13,_2,_14,_11,_15,_16,_17,_6,_11]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_9,_10,_11,_4,_12,_13,_14,_10,_9,_5,_15,_1,_11,_11,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_7,_13,_3,_14,_15,_7,_16,_17,_18,_19,_1]_19 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_0 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_1 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_2 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_3 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_4 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_5 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_6 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_7 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_8 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_9 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_10 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_11 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_12 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_13 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_14 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_15 + [0,_1,_2,_3,_2,_3,_3,_4,_5,_6,_7,_7,_8,_3,_0,_9,_7,_3,_10,_11,_12,_13,_14,_15,_0,_16]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_8,_11,_2,_0,_6,_1,_8,_3,_2,_12,_8,_1,_13,_14]_14 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_0 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_1 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_2 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_3 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_4 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_5 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_6 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_7 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_8 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_9 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_10 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_11 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_12 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_13 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_14 + [0,_0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_8,_14,_2,_3,_15,_1,_0,_7,_11,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_6,_7,_8,_9,_5,_10,_11,_9,_12,_11,_1,_13,_3,_13,_12,_3,_4,_2]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_7,_0,_8,_9,_10,_2,_6,_3,_11,_3,_12,_13,_9,_14,_15,_16,_17]_17 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_0 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_1 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_2 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_3 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_4 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_5 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_6 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_7 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_8 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_9 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_10 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_11 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_12 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_13 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_14 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_15 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_16 + [0,_0,_1,_2,_3,_4,_5,_2,_6,_7,_4,_7,_8,_9,_10,_11,_3,_12,_10,_11,_13,_0,_14,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_6,_13,_13,_10,_10,_1,_11,_3,_7,_8,_14,_15]_15 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_2,_5,_4,_6,_7,_8,_9,_1,_5,_10,_11,_12,_13,_11,_6,_7,_2,_5,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_2,_12,_13,_9,_14,_11,_9,_8,_15,_16,_7,_17,_18]_18 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_0 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_1 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_2 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_3 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_4 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_5 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_6 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_7 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_8 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_9 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_10 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_11 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_12 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_13 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_14 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_9,_10,_3,_1,_8,_11,_12,_13,_13,_14,_15,_2,_2,_4,_5]_15 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_0 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_1 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_2 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_3 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_4 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_5 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_6 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_7 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_8 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_9 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_10 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_11 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_12 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_13 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_14 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_15 + [0,_0,_1,_2,_3,_4,_3,_5,_4,_6,_7,_8,_9,_10,_10,_4,_10,_8,_11,_12,_13,_14,_5,_15,_16,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_2,_6,_10,_11,_12,_13,_3,_14,_2,_6,_10,_15,_13,_13]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_11,_12,_13,_14,_15,_1,_1,_0,_16,_12,_7,_13,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_10,_7,_3,_13,_3,_14,_15,_16,_3,_17,_5,_18,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_1,_6,_10,_11,_12,_4,_3,_13,_14,_11,_15,_0,_2,_8,_3]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_17 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_18 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_6,_10,_3,_11,_12,_1,_1,_13,_14,_4,_15,_16,_17,_18,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_7,_6,_10,_4,_8,_11,_12,_9,_13,_2,_14,_15,_9,_2,_2]_15 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_0 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_1 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_2 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_3 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_4 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_5 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_6 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_7 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_8 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_9 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_10 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_11 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_0,_7,_8,_1,_7,_9,_3,_10,_11,_7,_4,_4,_0,_12,_10,_4,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_5,_1,_14,_10,_15,_4,_0,_16,_0,_14,_7]_16 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_0 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_1 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_2 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_3 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_4 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_5 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_6 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_7 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_8 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_9 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_10 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_11 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_12 + [0,_1,_2,_1,_3,_4,_5,_5,_6,_3,_7,_3,_3,_8,_9,_10,_6,_11,_11,_5,_10,_12,_9,_13,_1,_5]_13 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_0 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_1 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_2 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_3 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_4 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_5 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_6 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_7 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_8 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_9 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_10 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_11 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_12 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_13 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_14 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_15 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_16 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_8,_8,_14,_5,_3,_15,_16,_17,_10]_17 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_0 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_1 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_2 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_3 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_4 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_5 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_6 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_7 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_8 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_9 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_10 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_11 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_12 + [0,_1,_2,_3,_0,_4,_0,_5,_2,_4,_6,_7,_5,_8,_9,_7,_2,_1,_10,_11,_6,_1,_6,_12,_9,_13]_13 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_0 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_1 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_2 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_3 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_4 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_5 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_6 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_7 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_8 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_9 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_10 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_11 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_12 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_13 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_14 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_15 + [0,_1,_1,_2,_3,_4,_1,_1,_5,_6,_7,_3,_8,_8,_9,_10,_11,_12,_13,_14,_15,_15,_15,_7,_7,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_5,_11,_12,_10,_10,_13,_14,_0,_15,_16,_17,_7,_14,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_6,_7,_2,_8,_3,_3,_1,_1,_9,_10,_11,_2,_5,_7,_12,_13,_2,_2]_13 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_0 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_1 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_2 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_3 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_4 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_5 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_6 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_7 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_8 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_9 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_10 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_11 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_12 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_13 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_14 + [0,_1,_2,_3,_2,_0,_4,_1,_4,_5,_6,_1,_7,_8,_9,_3,_3,_10,_11,_10,_12,_13,_13,_14,_8,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_5,_10,_5,_9,_0,_11,_12,_9,_4,_7,_13,_4,_14,_11,_7]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_5,_6,_9,_10,_9,_1,_11,_12,_13,_12,_7,_14,_8,_8,_14,_4]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_6,_5,_2,_8,_2,_9,_10,_0,_11,_11,_12,_4,_13,_1,_14,_8]_14 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_0 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_1 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_2 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_3 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_4 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_5 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_6 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_7 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_8 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_9 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_10 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_11 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_12 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_13 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_14 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_15 + [0,_1,_2,_3,_0,_4,_5,_5,_6,_7,_8,_8,_9,_10,_2,_11,_0,_12,_4,_7,_13,_14,_15,_16,_12,_14]_16 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_8,_4,_5,_8,_12,_13,_14,_15,_13,_16,_6,_5,_2]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_0,_12,_13,_7,_5,_14,_8,_4,_15,_9,_16,_17]_17 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_0 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_1 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_2 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_3 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_4 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_5 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_6 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_7 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_8 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_9 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_10 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_11 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_12 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_13 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_14 + [0,_1,_2,_3,_4,_1,_0,_3,_5,_6,_7,_8,_9,_10,_11,_1,_12,_13,_14,_8,_1,_9,_1,_15,_7,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_8,_11,_0,_12,_13,_3,_14,_15,_13,_2,_5,_4,_9,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_9,_14,_9,_15,_4,_7,_0,_9,_6,_4]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_2,_12,_9,_2,_6,_11,_13,_6,_14,_15,_11]_15 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_0 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_1 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_2 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_3 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_4 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_5 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_6 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_7 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_8 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_9 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_10 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_11 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_12 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_13 + [0,_1,_2,_1,_3,_4,_4,_2,_5,_5,_2,_4,_6,_0,_7,_4,_8,_9,_4,_10,_11,_8,_12,_13,_14,_1]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_16 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_6,_7,_8,_7,_9,_0,_10,_11,_5,_12,_13,_14,_15,_8,_3,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_0 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_1 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_2 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_3 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_4 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_5 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_6 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_7 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_8 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_9 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_10 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_11 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_12 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_13 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_14 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_15 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_16 + [0,_1,_2,_3,_4,_5,_2,_4,_6,_7,_8,_9,_10,_8,_8,_2,_11,_12,_13,_14,_15,_16,_1,_16,_17,_8]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_6,_8,_9,_1,_10,_4,_7,_11,_12,_8,_13,_12,_14,_6,_15,_5,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_5,_10,_3,_11,_12,_10,_13,_14,_12,_15,_10,_4,_3,_12]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_8,_6,_6,_11,_11,_12,_7,_11,_13,_14,_15,_5,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_12,_7,_13,_1,_0,_12,_14,_9,_5,_15,_6,_14]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_17 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_4,_4,_10,_11,_12,_13,_14,_15,_16,_11,_16,_5,_17,_18,_16]_18 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_0 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_1 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_2 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_3 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_4 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_5 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_6 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_7 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_8 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_9 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_10 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_11 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_12 + [0,_1,_2,_2,_3,_4,_5,_5,_6,_1,_7,_0,_8,_7,_9,_1,_10,_5,_11,_11,_12,_12,_13,_8,_11,_9]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_10,_7,_12,_13,_3,_14,_13,_15,_14,_9,_5,_16,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_4,_12,_1,_7,_1,_13,_11,_14,_15,_4,_2,_6,_7]_15 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_0 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_1 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_2 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_3 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_4 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_5 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_6 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_7 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_8 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_9 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_10 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_11 + [0,_0,_1,_2,_3,_1,_2,_4,_2,_5,_2,_4,_6,_7,_8,_9,_10,_7,_3,_11,_12,_6,_3,_5,_1,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_12,_14,_2,_3,_13,_15,_10,_0,_12,_8,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_3,_7,_8,_12,_12,_13,_10,_14,_7,_15,_5,_11,_16]_16 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_0 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_1 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_2 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_3 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_4 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_5 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_6 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_7 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_8 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_9 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_10 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_11 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_12 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_13 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_14 + [0,_1,_1,_2,_3,_4,_2,_5,_6,_3,_7,_6,_8,_9,_6,_7,_10,_11,_11,_12,_13,_1,_14,_12,_15,_15]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_10,_9,_11,_12,_7,_12,_6,_7,_7,_13,_10,_2,_14,_4]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_4,_1,_10,_5,_11,_1,_12,_9,_13,_3,_14,_15,_13,_16,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_2,_9,_10,_11,_5,_12,_13,_1,_2,_14,_15,_16,_17,_18,_6,_9]_18 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_0 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_1 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_2 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_3 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_4 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_5 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_6 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_7 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_8 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_9 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_10 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_11 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_12 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_13 + [0,_0,_1,_2,_0,_2,_3,_4,_5,_2,_6,_7,_8,_1,_9,_10,_11,_8,_12,_13,_7,_5,_14,_12,_13,_7]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_6,_7,_3,_3,_3,_8,_7,_9,_2,_10,_11,_12,_13,_9,_14,_11,_9,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_6,_12,_7,_13,_14,_15,_7,_10,_4,_16,_4,_1]_16 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_9,_10,_0,_11,_11,_12,_12,_8,_13,_8,_14,_8,_15,_2,_2]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_8,_7,_11,_12,_13,_14,_15,_1,_6,_7,_16,_13,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_2,_10,_12,_7,_5,_4,_9,_11,_5,_13,_14,_9,_9,_6]_14 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_0 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_1 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_2 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_3 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_4 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_5 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_6 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_7 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_8 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_9 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_10 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_11 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_12 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_13 + [0,_1,_2,_3,_0,_4,_4,_5,_6,_7,_4,_1,_2,_8,_9,_10,_10,_11,_7,_12,_13,_12,_11,_11,_14,_1]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_2,_5,_1,_9,_0,_1,_6,_10,_5,_11,_12,_7,_13,_5,_7,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_0,_7,_8,_4,_9,_4,_10,_8,_11,_12,_13,_14,_15,_1,_16,_15,_11,_17]_17 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_3,_10,_9,_11,_12,_13,_3,_9,_14,_15,_16,_17,_5,_2,_5]_17 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_0 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_1 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_2 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_3 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_4 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_5 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_6 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_7 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_8 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_9 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_10 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_11 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_12 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_13 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_14 + [0,_1,_2,_3,_4,_5,_4,_3,_6,_2,_7,_8,_9,_10,_11,_5,_3,_12,_13,_7,_11,_14,_15,_6,_13,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_2,_8,_9,_10,_11,_12,_12,_8,_13,_7,_1,_0,_9,_14,_9,_10,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_4,_9,_10,_7,_11,_9,_12,_13,_3,_14,_15,_16,_17,_13,_14,_4]_17 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_1,_0,_9,_10,_11,_1,_12,_7,_13,_14,_14,_15,_13,_16,_12]_16 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_0 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_1 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_2 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_3 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_4 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_5 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_6 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_7 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_8 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_9 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_10 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_11 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_12 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_13 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_14 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_15 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_16 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_17 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_9,_10,_11,_12,_13,_5,_14,_15,_11,_16,_14,_17,_5,_18,_16]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_0,_12,_13,_14,_1,_0,_11,_15,_6,_16,_15,_17,_1]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_5,_9,_10,_11,_11,_7,_12,_13,_14,_15,_16,_17,_18,_11,_6]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_5,_13,_2,_10,_0,_3,_12,_0,_14,_2,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_8,_1,_9,_10,_11,_12,_10,_13,_2,_14,_13,_8,_15,_16,_1,_17]_17 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_5,_7,_8,_9,_10,_11,_12,_3,_13,_13,_14,_0,_7,_15,_16,_1,_14,_3]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_17 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_10,_16,_9,_17,_18,_13,_12,_8,_0]_18 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_0 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_1 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_2 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_3 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_4 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_5 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_6 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_7 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_8 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_9 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_10 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_11 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_12 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_13 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_14 + [0,_1,_2,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_1,_10,_11,_9,_0,_3,_12,_8,_13,_9,_14,_15,_5]_15 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_0 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_1 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_2 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_3 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_4 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_5 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_6 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_7 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_8 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_9 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_10 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_11 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_12 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_13 + [0,_1,_2,_3,_4,_3,_5,_1,_1,_6,_7,_5,_8,_3,_9,_2,_10,_11,_3,_12,_3,_13,_14,_6,_4,_13]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_3,_8,_8,_9,_10,_11,_12,_2,_13,_14,_6,_5,_15,_16,_17,_7,_13]_17 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_0 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_1 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_2 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_3 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_4 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_5 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_6 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_7 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_8 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_9 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_10 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_11 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_12 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_13 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_14 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_15 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_16 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_4,_8,_2,_16,_11,_5,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_10,_7,_13,_14,_15,_14,_9,_10,_16,_17,_18]_18 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_0 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_1 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_2 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_3 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_4 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_5 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_6 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_7 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_8 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_9 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_10 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_11 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_12 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_13 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_14 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_15 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_16 + [0,_1,_2,_3,_3,_4,_5,_3,_6,_3,_7,_8,_9,_10,_11,_8,_0,_12,_13,_2,_3,_14,_15,_16,_9,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_12,_2,_13,_14,_15,_16,_9,_9,_17,_6,_18,_0,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_4,_4,_13,_6,_14,_6,_4,_12,_12,_12,_15,_16]_16 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_0 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_1 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_2 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_3 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_4 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_5 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_6 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_7 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_8 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_9 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_10 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_11 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_12 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_13 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_14 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_15 + [0,_1,_2,_3,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_6,_3,_9,_12,_13,_14,_15,_4,_13,_16,_7,_15]_16 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_10,_11,_11,_12,_13,_3,_3,_14,_6,_5,_15,_16,_2,_17,_18]_18 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_2,_8,_9,_7,_7,_10,_0,_11,_6,_5,_12,_13,_14,_14,_14,_1,_10]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_7,_10,_11,_12,_2,_12,_13,_14,_15,_6,_16,_5,_2,_14,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_0,_3,_1,_4,_4,_9,_10,_9,_10,_0,_11,_12,_4,_7,_8,_13]_13 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_0 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_1 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_2 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_3 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_4 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_5 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_6 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_7 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_8 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_9 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_10 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_11 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_12 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_13 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_14 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_15 + [0,_1,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_10,_1,_11,_12,_8,_13,_11,_14,_6,_15,_15,_16,_15]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_12,_13,_1,_14,_13,_4,_15,_16,_5,_9,_17,_11]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_11,_14,_13,_15,_16,_11,_17,_13,_9,_18,_17,_6]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_8,_9,_10,_11,_10,_12,_5,_11,_0,_4,_13,_14,_14,_8,_4,_7]_14 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_0 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_1 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_2 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_3 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_4 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_5 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_6 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_7 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_8 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_9 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_10 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_11 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_12 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_13 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_14 + [0,_1,_2,_3,_4,_0,_1,_5,_6,_7,_8,_9,_7,_5,_8,_5,_6,_10,_3,_5,_11,_12,_2,_13,_14,_15]_15 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_0 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_1 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_2 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_3 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_4 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_5 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_6 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_7 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_8 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_9 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_10 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_11 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_12 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_13 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_14 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_2,_7,_8,_9,_10,_2,_7,_11,_2,_12,_13,_5,_10,_14,_15,_15,_4]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_1,_9,_10,_3,_11,_2,_7,_12,_13,_13,_14,_15,_9,_2,_16,_17]_17 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_0 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_1 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_2 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_3 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_4 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_5 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_6 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_7 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_8 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_9 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_10 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_11 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_12 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_13 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_14 + [0,_1,_2,_3,_4,_1,_1,_5,_6,_1,_7,_3,_8,_9,_7,_0,_10,_11,_12,_0,_13,_3,_13,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_5,_5,_3,_5,_1,_7,_7,_8,_3,_9,_6,_10,_2,_11,_2,_12,_2,_13]_13 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_0 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_1 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_2 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_3 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_4 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_5 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_6 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_7 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_8 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_9 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_10 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_11 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_12 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_13 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_14 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_3,_7,_8,_1,_1,_4,_9,_10,_8,_11,_12,_13,_1,_1,_14,_2,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_5,_9,_10,_11,_12,_13,_3,_14,_15,_7,_16,_17,_18,_18,_5,_18]_18 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_0,_4,_1,_7,_8,_9,_10,_11,_4,_12,_13,_5,_4,_13,_14,_14,_15,_7]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_6,_5,_7,_8,_9,_2,_10,_11,_0,_9,_5,_12,_13,_12,_14,_15,_16,_13]_16 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_0 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_1 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_2 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_3 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_4 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_5 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_6 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_7 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_8 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_9 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_10 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_11 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_12 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_13 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_14 + [0,_1,_2,_0,_3,_1,_4,_5,_6,_7,_1,_0,_8,_9,_10,_1,_11,_2,_7,_12,_6,_13,_4,_14,_15,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_0,_6,_8,_7,_10,_11,_12,_13,_14,_13,_2,_15,_6,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_2,_4,_10,_1,_11,_12,_13,_7,_14,_0,_5,_11,_3,_10,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_11,_4,_5,_13,_11,_14,_15,_10,_5,_16,_5,_17]_17 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_0 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_1 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_2 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_3 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_4 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_5 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_6 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_7 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_8 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_9 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_10 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_11 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_12 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_13 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_14 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_15 + [0,_1,_2,_3,_4,_5,_0,_2,_0,_6,_7,_8,_6,_3,_9,_10,_11,_12,_12,_7,_13,_14,_15,_16,_15,_10]_16 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_0 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_1 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_2 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_3 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_4 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_5 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_6 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_7 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_8 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_9 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_10 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_11 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_12 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_13 + [0,_1,_2,_1,_3,_4,_0,_5,_4,_6,_7,_0,_7,_8,_5,_9,_0,_10,_5,_11,_12,_13,_8,_0,_7,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_0,_5,_10,_1,_3,_11,_12,_13,_14,_9,_15,_12,_6,_15,_16]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_17 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_14,_15,_6,_8,_16,_17,_4,_18,_13,_9]_18 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_9,_10,_11,_10,_12,_13,_3,_14,_10,_15,_6,_16,_17,_18,_4]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_6,_7,_8,_9,_10,_10,_10,_2,_11,_12,_13,_14,_13,_11,_5,_3,_15]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_5,_15,_11,_6,_0,_16,_4,_5,_1,_8]_16 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_0 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_1 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_2 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_3 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_4 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_5 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_6 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_7 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_8 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_9 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_10 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_11 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_12 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_13 + [0,_1,_2,_3,_1,_1,_4,_2,_3,_5,_5,_6,_7,_2,_1,_8,_9,_10,_11,_12,_5,_13,_14,_10,_6,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_6,_10,_8,_6,_0,_7,_11,_12,_13,_12,_3,_1,_11,_14,_15]_15 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_0 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_1 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_2 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_3 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_4 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_5 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_6 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_7 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_8 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_9 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_10 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_11 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_12 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_13 + [0,_1,_0,_2,_3,_4,_2,_3,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_10,_0,_14,_14,_13,_9,_2,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_6,_12,_0,_13,_2,_14,_15,_2,_16,_16,_9,_5,_4]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_7,_10,_8,_0,_11,_6,_6,_12,_2,_10,_13,_14,_15,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_7,_9,_5,_10,_11,_12,_8,_13,_6,_14,_15,_16,_9,_12,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_5,_3,_0,_8,_9,_10,_11,_6,_12,_13,_14,_14,_10,_8,_15,_5,_8]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_8,_2,_7,_9,_10,_0,_11,_12,_13,_7,_1,_4,_12,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_4,_9,_5,_10,_11,_12,_6,_13,_0,_6,_14,_15,_16,_5,_11,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_6,_4,_8,_5,_9,_10,_11,_12,_13,_4,_2,_14,_6,_5,_15,_2,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_5,_8,_9,_10,_11,_1,_4,_3,_2,_12,_13,_12,_14,_15,_8,_0,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_7,_10,_6,_15,_11,_5,_16,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_16 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_6,_1,_10,_11,_12,_13,_8,_14,_5,_13,_15,_16,_2,_17,_10]_17 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_0 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_1 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_2 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_3 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_4 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_5 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_6 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_7 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_8 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_9 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_10 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_11 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_12 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_13 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_14 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_15 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_13,_4,_3,_14,_15,_16,_8,_9,_1]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_4,_5,_8,_9,_1,_10,_11,_12,_13,_14,_10,_5,_5,_15,_16,_1]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_14,_11,_17,_10,_3,_6,_13]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_7,_8,_9,_10,_6,_6,_11,_12,_13,_2,_14,_10,_8,_1,_11,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_13,_11,_2,_11,_3,_14,_15,_3,_16,_0,_5,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_3,_8,_9,_4,_10,_11,_12,_13,_1,_5,_14,_11,_15,_7,_11,_4,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_7,_10,_11,_9,_12,_13,_12,_14,_5,_8,_13,_3,_0,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_12,_15,_1,_13,_11,_16,_17,_7,_18,_17,_4]_18 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_0 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_1 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_2 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_3 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_4 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_5 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_6 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_7 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_8 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_9 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_10 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_11 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_12 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_13 + [0,_1,_2,_3,_4,_2,_0,_5,_6,_7,_8,_7,_8,_9,_10,_11,_12,_6,_13,_4,_2,_8,_14,_8,_6,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_6,_5,_7,_8,_0,_7,_7,_0,_9,_0,_10,_8,_11,_12,_13,_14,_15,_1]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_9,_12,_0,_1,_13,_13,_8,_13,_14,_13,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_8,_2,_6,_5,_9,_10,_11,_1,_7,_12,_4,_13,_14,_1,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_1,_8,_10,_11,_10,_12,_3,_7,_9,_6,_13,_14,_15,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_18 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_19 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_0,_7,_9,_10,_0,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_17]_20 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_0 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_1 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_2 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_3 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_4 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_5 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_6 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_7 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_8 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_9 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_10 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_11 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_12 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_13 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_14 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_9,_10,_11,_5,_12,_6,_3,_11,_3,_13,_0,_8,_14,_15,_13]_15 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_0 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_1 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_2 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_3 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_4 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_5 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_6 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_7 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_8 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_9 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_10 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_11 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_12 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_13 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_14 + [0,_1,_2,_3,_1,_4,_2,_5,_3,_6,_2,_5,_7,_8,_8,_8,_9,_10,_8,_11,_12,_13,_4,_1,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_2,_0,_9,_10,_6,_11,_12,_9,_8,_4,_13,_8,_10,_3,_9,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_3,_5,_5,_11,_0,_12,_13,_14,_6,_15,_16,_17,_18,_13]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_3,_12,_5,_1,_13,_14,_15,_4,_15,_15,_16,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_1,_10,_10,_4,_11,_12,_13,_0,_0,_14,_15,_12,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_0 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_1 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_2 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_3 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_4 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_5 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_6 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_7 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_8 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_9 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_10 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_11 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_12 + [0,_1,_2,_3,_4,_0,_2,_5,_6,_7,_3,_1,_8,_9,_7,_2,_10,_11,_9,_0,_4,_12,_12,_0,_13,_11]_13 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_0 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_1 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_2 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_3 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_4 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_5 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_6 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_7 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_8 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_9 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_10 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_11 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_12 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_13 + [0,_1,_2,_2,_3,_4,_0,_5,_6,_0,_7,_8,_0,_3,_9,_10,_0,_11,_12,_13,_13,_10,_12,_14,_1,_7]_14 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_0 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_1 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_2 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_3 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_4 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_5 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_6 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_7 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_8 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_9 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_10 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_11 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_12 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_13 + [0,_1,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_5,_10,_8,_10,_3,_9,_11,_10,_12,_13,_0,_7,_14,_8]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_4,_7,_8,_2,_0,_9,_4,_10,_8,_11,_12,_0,_13,_2,_14,_3,_1,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_3,_8,_9,_10,_10,_1,_9,_10,_11,_12,_4,_7,_8,_13,_14,_4,_11]_14 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_0 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_1 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_2 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_3 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_4 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_5 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_6 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_7 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_8 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_9 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_10 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_11 + [0,_1,_2,_3,_4,_4,_5,_5,_0,_3,_2,_6,_2,_7,_7,_1,_8,_4,_9,_10,_11,_12,_5,_4,_11,_9]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_2,_4,_8,_9,_10,_11,_10,_0,_12,_5,_13,_2,_1,_14,_10,_5,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_6,_7,_11,_15,_0,_16,_17,_5,_9,_7]_17 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_0,_2,_1,_7,_8,_9,_10,_0,_11,_4,_12,_1,_1,_13,_14,_15,_16,_9]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_9,_5,_10,_11,_9,_12,_9,_13,_3,_14,_10,_15,_15,_16,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_3,_10,_11,_11,_12,_1,_5,_10,_8,_13,_1,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_0,_9,_12,_10,_10,_13,_14,_12,_2,_8,_0,_15,_14]_15 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_0 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_1 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_2 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_3 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_4 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_5 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_6 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_7 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_8 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_9 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_10 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_11 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_12 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_13 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_14 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_15 + [0,_1,_2,_3,_1,_4,_1,_5,_6,_7,_2,_3,_8,_9,_10,_11,_12,_12,_4,_1,_13,_14,_15,_1,_4,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_7,_5,_0,_0,_8,_9,_10,_1,_11,_12,_13,_14,_3,_15,_16,_0,_2]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_5,_9,_2,_10,_11,_12,_2,_13,_8,_10,_14,_0,_15,_3,_16,_6]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_9,_1,_10,_11,_12,_13,_14,_15,_15,_4,_12,_8,_3,_16,_5]_16 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_3,_7,_8,_9,_4,_10,_6,_0,_11,_12,_10,_13,_14,_15,_16,_9,_13,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_10,_11,_12,_4,_6,_13,_11,_13,_6,_9,_14,_2,_5,_15,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_3,_8,_9,_7,_10,_7,_11,_5,_2,_12,_13,_13,_14,_15,_6,_0,_16]_16 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_0 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_1 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_2 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_3 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_4 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_5 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_6 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_7 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_8 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_9 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_10 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_11 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_12 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_13 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_14 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_15 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_16 + [0,_1,_2,_3,_4,_4,_5,_5,_6,_7,_8,_0,_9,_10,_11,_9,_12,_13,_14,_15,_12,_16,_17,_12,_14,_8]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_5,_11,_12,_11,_4,_13,_11,_14,_15,_0,_10,_14,_5,_7,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_8,_9,_7,_10,_6,_11,_12,_13,_13,_12,_10,_6,_8,_10,_14,_15]_15 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_0 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_1 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_2 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_3 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_4 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_5 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_6 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_7 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_8 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_9 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_10 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_11 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_12 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_13 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_14 + [0,_1,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_6,_4,_10,_11,_12,_8,_13,_8,_1,_14,_15,_3,_3]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_16 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_17 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_18 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_8,_9,_10,_11,_12,_0,_13,_4,_14,_15,_11,_16,_17,_18,_19]_19 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_0 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_1 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_2 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_3 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_4 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_5 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_6 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_7 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_8 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_9 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_10 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_11 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_12 + [0,_1,_2,_3,_2,_3,_1,_4,_3,_5,_5,_6,_7,_5,_7,_8,_1,_9,_0,_1,_5,_10,_11,_12,_3,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_7,_5,_10,_11,_6,_1,_11,_9,_2,_5,_12,_13,_14,_15,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_0,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_5,_9,_7,_17,_18,_11]_18 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_4,_7,_2,_5,_6,_3,_8,_9,_10,_11,_9,_1,_12,_6,_13,_14,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_8,_0,_7,_9,_8,_1,_10,_11,_12,_0,_13,_6,_5,_6,_3,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_5,_13,_8,_14,_11,_1,_11,_8,_0,_7,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_4,_7,_8,_9,_10,_11,_2,_12,_13,_2,_10,_14,_9,_14,_15,_16,_13,_17]_17 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_9,_10,_11,_7,_8,_5,_12,_13,_14,_11,_12,_10,_4,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_2,_5,_7,_11,_0,_12,_10,_7,_10,_12,_3,_13,_14,_3]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_0,_7,_0,_1,_8,_9,_10,_11,_12,_13,_7,_12,_14,_15,_16,_9,_7,_7]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_0,_8,_2,_9,_10,_11,_5,_12,_13,_14,_15,_0,_16,_17,_17,_4,_12]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_13,_8,_14,_10,_11,_15,_4,_10,_12,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_0 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_1 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_2 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_3 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_4 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_5 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_6 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_7 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_8 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_9 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_10 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_11 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_12 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_13 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_7,_8,_9,_10,_2,_0,_3,_11,_0,_10,_12,_13,_10,_7,_14,_1,_9]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_4,_7,_8,_9,_1,_2,_10,_11,_12,_7,_13,_1,_14,_6,_15,_9,_11,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_5,_0,_13,_7,_14,_11,_8,_8,_5,_5,_3,_13]_14 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_0 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_1 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_2 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_3 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_4 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_5 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_6 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_7 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_8 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_9 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_10 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_11 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_12 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_13 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_14 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_15 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_16 + [0,_1,_0,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_7,_8,_12,_16,_17,_15,_12]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_0,_3,_13,_5,_14,_15,_16,_9,_1,_1,_2,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_6,_3,_13,_14,_2,_4,_9,_15,_0,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_8,_9,_10,_5,_7,_1,_9,_11,_11,_12,_13,_14,_15,_10,_12,_5]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_18 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_14,_1,_1,_13,_15,_16,_6,_17,_18,_1,_19]_19 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_0,_11,_12,_13,_14,_4,_7,_1,_7,_0,_2,_15,_9,_10]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_3,_0,_7,_2,_1,_4,_8,_9,_3,_10,_9,_11,_12,_2,_0,_13,_3,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_5,_8,_7,_2,_9,_7,_10,_6,_9,_10,_11,_7,_12,_0,_6,_13,_11]_13 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_0 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_1 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_2 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_3 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_4 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_5 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_6 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_7 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_8 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_9 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_10 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_11 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_12 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_13 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_14 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_15 + [0,_1,_2,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_2,_12,_9,_7,_14,_0,_3,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_0,_11,_12,_5,_13,_3,_14,_11,_12,_15,_16,_1,_11,_11]_16 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_10,_1,_11,_4,_4,_12,_11,_13,_14,_10,_7,_14,_15,_3,_8]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_8,_8,_0,_9,_6,_10,_8,_2,_11,_5,_8,_7,_12,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_7,_10,_1,_7,_6,_11,_12,_11,_13,_2,_0,_1,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_5,_2,_4,_6,_10,_8,_0,_10,_4,_4,_11,_12,_13,_14,_13]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_16 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_8,_7,_13,_14,_12,_5,_15,_0,_16,_4,_5,_17]_17 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_0 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_1 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_2 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_3 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_4 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_5 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_6 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_7 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_8 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_9 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_10 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_11 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_12 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_13 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_14 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_15 + [0,_1,_2,_3,_4,_0,_5,_4,_6,_7,_8,_9,_10,_11,_3,_3,_12,_6,_13,_14,_5,_15,_7,_14,_16,_2]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_3,_12,_13,_14,_1,_6,_6,_15,_0,_8,_16,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_10,_11,_12,_1,_13,_6,_14,_9,_15,_16,_4,_8,_17,_7]_17 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_4,_11,_12,_13,_14,_12,_6,_12,_15,_16,_2,_14,_17]_17 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_4,_10,_11,_11,_12,_2,_1,_13,_14,_9,_15,_10,_8,_6,_9]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_16 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_3,_14,_14,_4,_15,_16,_12,_17,_8]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_7,_12,_3,_8,_13,_14,_4,_1,_9,_1,_1,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_12,_3,_4,_7,_8,_0,_13,_14,_8,_15,_1,_1,_16]_16 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_0 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_1 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_2 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_3 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_4 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_5 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_6 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_7 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_8 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_9 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_10 + [0,_1,_2,_1,_2,_3,_3,_4,_5,_1,_6,_7,_2,_5,_1,_8,_9,_9,_10,_10,_10,_2,_1,_11,_9,_5]_11 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_0 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_1 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_2 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_3 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_4 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_5 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_6 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_7 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_8 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_9 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_10 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_11 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_12 + [0,_0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_2,_9,_7,_3,_5,_0,_9,_1,_9,_10,_11,_12,_13,_9]_13 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_0 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_1 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_2 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_3 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_4 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_5 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_6 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_7 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_8 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_9 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_10 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_11 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_12 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_13 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_14 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_15 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_16 + [0,_1,_2,_3,_4,_1,_5,_1,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_14,_5,_7,_15,_16,_17,_1,_6]_17 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_6,_7,_8,_9,_10,_1,_0,_4,_11,_0,_4,_12,_13,_14,_1,_15,_13,_13]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_6,_7,_8,_9,_4,_1,_10,_8,_8,_11,_12,_13,_7,_13,_3,_14,_8,_15]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_2,_2,_11,_1,_12,_13,_7,_14,_3,_8,_5,_0,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_5,_8,_4,_9,_5,_1,_4,_5,_10,_11,_11,_8,_10,_4,_4,_9]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_6,_2,_5,_5,_8,_9,_10,_11,_12,_0,_0,_3,_2,_3,_13,_14,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_11,_8,_1,_12,_6,_13,_14,_15,_15,_1,_16,_11,_17,_12]_17 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_0 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_1 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_2 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_3 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_4 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_5 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_6 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_7 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_8 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_9 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_10 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_11 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_12 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_13 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_14 + [0,_1,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_4,_2,_10,_6,_8,_11,_12,_10,_13,_14,_2,_5,_15,_9]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_3,_2,_9,_10,_1,_11,_11,_12,_11,_8,_9,_13,_2,_7,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_0,_12,_13,_11,_0,_14,_1,_11,_15,_16,_17,_14]_17 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_1,_8,_11,_12,_1,_13,_2,_14,_8,_15,_16,_9,_14,_5]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_0,_11,_4,_2,_12,_0,_7,_13,_0,_14,_11,_7,_15,_8]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_5,_9,_1,_10,_6,_3,_8,_5,_11,_4,_12,_13,_1,_1,_14]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_3,_9,_10,_11,_6,_12,_13,_6,_14,_9,_4,_15,_16,_17,_2]_17 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_3,_8,_9,_10,_11,_7,_12,_13,_5,_14,_15,_16,_9,_9,_3,_17,_8]_17 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_0 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_1 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_2 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_3 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_4 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_5 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_6 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_7 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_8 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_9 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_10 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_11 + [0,_1,_2,_3,_1,_2,_4,_5,_6,_7,_8,_2,_9,_1,_5,_10,_5,_11,_12,_2,_8,_2,_4,_2,_10,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_9,_10,_11,_12,_2,_6,_13,_13,_2,_14,_15,_2,_4,_16,_17]_17 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_0 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_1 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_2 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_3 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_4 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_5 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_6 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_7 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_8 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_9 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_10 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_11 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_12 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_13 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_14 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_15 + [0,_0,_1,_2,_3,_4,_5,_0,_6,_0,_7,_8,_9,_2,_10,_11,_12,_13,_14,_15,_16,_7,_1,_3,_8,_5]_16 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_0 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_1 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_2 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_3 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_4 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_5 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_6 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_7 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_8 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_9 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_10 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_11 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_12 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_13 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_14 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_15 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_16 + [0,_0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_2,_0,_9,_10,_11,_12,_13,_12,_14,_12,_4,_5,_15,_16,_17]_17 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_15 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_16 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_1,_6,_12,_5,_4,_13,_14,_5,_12,_15,_16,_17]_17 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_5,_1,_9,_10,_11,_12,_13,_6,_13,_14,_10,_9,_15,_15,_15,_16]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_6,_9,_10,_11,_2,_12,_7,_8,_0,_9,_6,_7,_13,_2,_14,_15]_15 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_0 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_1 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_2 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_3 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_4 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_5 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_6 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_7 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_8 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_9 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_10 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_11 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_12 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_13 + [0,_1,_1,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_6,_12,_3,_13,_14,_2,_3,_13,_7,_13]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_8,_5,_4,_2,_10,_3,_5,_11,_4,_12,_1,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_1,_7,_9,_10,_11,_12,_9,_13,_14,_15,_1,_2,_16,_6,_0,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_3,_9,_10,_11,_9,_12,_0,_12,_13,_14,_15,_16,_9,_6,_17,_10]_17 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_17 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_18 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_19 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_13,_14,_15,_3,_16,_17,_18,_18,_19,_14,_20]_20 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_0 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_1 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_2 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_3 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_4 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_5 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_6 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_7 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_8 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_9 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_10 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_11 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_12 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_13 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_14 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_15 + [0,_1,_1,_2,_3,_4,_5,_2,_6,_4,_7,_8,_9,_10,_11,_12,_8,_5,_13,_14,_0,_15,_11,_6,_4,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_9,_0,_10,_8,_11,_12,_0,_7,_13,_2,_10,_14,_15,_3,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_6,_2,_6,_7,_8,_9,_6,_10,_4,_11,_1,_12,_7,_3,_7,_13,_14]_14 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_0 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_1 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_2 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_3 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_4 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_5 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_6 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_7 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_8 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_9 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_10 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_11 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_12 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_13 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_14 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_15 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_16 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_17 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_18 + [0,_1,_2,_3,_0,_2,_0,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_13,_14,_15,_16,_17,_18,_1,_11,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_5,_7,_8,_9,_10,_11,_12,_13,_7,_11,_1,_4,_14,_11,_9,_15,_16,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_2,_8,_9,_1,_10,_11,_0,_12,_13,_14,_15,_16,_0,_16,_5,_11,_2]_16 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_0 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_1 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_2 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_3 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_4 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_5 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_6 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_7 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_8 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_9 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_10 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_11 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_12 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_13 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_14 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_15 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_16 + [0,_1,_2,_3,_4,_5,_1,_3,_4,_6,_7,_8,_9,_10,_11,_5,_12,_0,_13,_9,_6,_14,_15,_16,_12,_17]_17 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_17 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_0,_4,_10,_15,_16,_17,_18,_16,_13]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_10,_11,_1,_11,_3,_5,_0,_13,_8,_14,_12,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_6,_5,_5,_2,_9,_8,_10,_11,_10,_9,_12,_1,_2,_5,_5,_0]_12 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_0 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_1 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_2 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_3 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_4 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_5 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_6 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_7 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_8 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_9 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_10 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_11 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_12 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_13 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_14 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_15 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_16 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_4,_10,_11,_12,_13,_14,_3,_15,_16,_6,_12,_2,_17]_17 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_3,_4,_6,_5,_7,_8,_9,_10,_11,_0,_7,_12,_13,_1,_11,_14,_15,_13,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_12,_10,_12,_0,_4,_13,_0,_5,_14,_1,_13,_4,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_7,_8,_2,_1,_12,_13,_14,_15,_16,_13,_17,_18,_12]_18 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_7,_9,_3,_10,_0,_11,_12,_13,_14,_15,_5,_16,_15,_7,_17]_17 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_3,_3,_6,_7,_8,_9,_10,_11,_7,_11,_2,_12,_7,_6,_13,_12,_11,_2]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_1,_10,_2,_11,_12,_2,_13,_7,_4,_9,_14,_14,_4,_7,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_3,_10,_9,_9,_11,_12,_13,_14,_15,_0,_14,_12,_14,_4,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_0,_1,_12,_13,_7,_1,_14,_6,_1,_12,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_0 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_1 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_2 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_3 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_4 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_5 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_6 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_7 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_8 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_9 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_10 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_11 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_12 + [0,_1,_2,_3,_4,_4,_5,_3,_6,_7,_5,_8,_6,_2,_9,_9,_10,_11,_12,_2,_0,_13,_9,_0,_5,_9]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_1,_9,_1,_8,_10,_11,_12,_3,_13,_14,_2,_15,_13,_16,_5,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_6,_12,_14,_1,_12,_4,_15,_1,_16,_11,_0,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_6,_5,_8,_1,_9,_10,_11,_10,_0,_7,_12,_6,_2,_13,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_5,_8,_9,_2,_10,_0,_10,_10,_0,_10,_10,_8,_9,_11,_12,_1,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_9,_11,_11,_12,_13,_14,_8,_15,_16,_1,_4,_17,_15,_5]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_2,_2,_8,_9,_8,_10,_11,_4,_12,_13,_5,_8,_11,_6,_14,_15,_11]_15 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_0 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_1 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_2 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_3 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_4 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_5 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_6 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_7 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_8 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_9 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_10 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_11 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_12 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_13 + [0,_1,_0,_2,_3,_4,_5,_1,_6,_7,_8,_7,_5,_7,_2,_9,_10,_2,_11,_0,_12,_7,_5,_13,_14,_6]_14 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_0 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_1 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_2 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_3 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_4 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_5 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_6 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_7 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_8 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_9 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_10 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_11 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_12 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_13 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_14 + [0,_1,_2,_3,_3,_4,_4,_5,_6,_7,_3,_8,_5,_9,_10,_10,_0,_11,_6,_12,_13,_13,_14,_15,_4,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_10,_11,_12,_10,_10,_3,_13,_14,_15,_13,_10,_1,_16,_17,_18]_18 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_0 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_1 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_2 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_3 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_4 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_5 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_6 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_7 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_8 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_9 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_10 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_11 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_12 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_13 + [0,_1,_2,_3,_0,_4,_5,_3,_6,_7,_8,_9,_10,_6,_10,_11,_7,_11,_3,_12,_13,_9,_3,_14,_12,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_5,_9,_10,_11,_12,_13,_3,_5,_4,_11,_14,_2,_6,_6,_5,_4]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_11,_12,_13,_13,_14,_12,_3,_12,_7,_11,_15,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_2,_5,_8,_6,_1,_3,_9,_1,_10,_2,_11,_12,_13,_11,_14,_15,_1]_15 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_0 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_1 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_2 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_3 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_4 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_5 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_6 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_7 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_8 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_9 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_10 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_11 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_12 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_13 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_14 + [0,_1,_0,_2,_3,_3,_0,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_11,_11,_13,_14,_4,_4,_11,_5,_15]_15 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_0 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_1 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_2 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_3 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_4 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_5 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_6 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_7 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_8 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_9 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_10 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_11 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_12 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_13 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_14 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_15 + [0,_1,_2,_3,_4,_5,_1,_1,_6,_7,_8,_9,_10,_1,_7,_11,_12,_13,_7,_13,_14,_3,_15,_16,_14,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_4,_9,_10,_9,_9,_11,_12,_13,_6,_14,_1,_14,_3,_15,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_1,_7,_8,_0,_9,_10,_11,_5,_11,_7,_12,_13,_14,_14,_7,_7,_11,_15]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_0,_7,_8,_9,_4,_10,_11,_3,_3,_7,_2,_12,_13,_10,_0,_11,_10,_14]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_16 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_11,_4,_12,_11,_13,_11,_5,_14,_15,_16,_17,_1]_17 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_5,_1,_9,_6,_10,_11,_6,_12,_12,_7,_13,_14,_3,_15,_16,_13]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_17 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_9,_11,_12,_13,_14,_13,_15,_1,_16,_1,_12,_17,_18,_4]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_9,_12,_3,_9,_0,_10,_13,_1,_4,_11,_14,_5,_15,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_7,_4,_9,_10,_11,_12,_13,_10,_12,_2,_6,_14,_15,_16,_14,_17]_17 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_0 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_1 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_2 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_3 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_4 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_5 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_6 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_7 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_8 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_9 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_10 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_11 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_12 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_13 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_14 + [0,_1,_2,_3,_1,_4,_0,_5,_6,_7,_8,_2,_9,_10,_11,_7,_12,_13,_14,_1,_6,_3,_15,_12,_3,_0]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_5,_11,_5,_12,_13,_6,_2,_1,_14,_15,_6,_7,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_6,_5,_5,_10,_4,_11,_12,_0,_3,_2,_8,_1,_12,_13,_5]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_5,_0,_10,_11,_12,_10,_6,_13,_13,_11,_8,_13,_13,_13,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_6,_9,_10,_11,_1,_12,_13,_3,_3,_14,_15,_12,_14,_9,_7,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_6,_10,_11,_0,_12,_9,_13,_14,_7,_15,_16,_17,_6,_5,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_6,_15,_13,_16,_2,_9,_10,_1,_15,_13]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_6,_7,_8,_3,_9,_1,_10,_11,_1,_12,_12,_13,_14,_15,_16,_4,_3,_17]_17 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_17 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_16,_1,_7,_11,_0,_18,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_1,_11,_12,_13,_1,_1,_9,_13,_9,_14,_15,_8,_16]_16 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_0 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_1 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_2 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_3 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_4 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_5 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_6 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_7 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_8 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_9 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_10 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_11 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_12 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_13 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_14 + [0,_1,_2,_1,_3,_4,_0,_5,_6,_7,_4,_8,_9,_10,_6,_9,_2,_11,_12,_13,_4,_9,_14,_15,_0,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_5,_9,_10,_7,_0,_1,_11,_12,_13,_3,_7,_12,_2,_14,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_7,_6,_10,_11,_12,_13,_1,_14,_15,_16,_16,_5,_17,_3,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_9,_8,_3,_10,_11,_12,_13,_14,_12,_13,_2,_13,_8,_12,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_4,_11,_2,_5,_4,_8,_2,_6,_12,_13,_14,_13,_14,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_3,_9,_2,_10,_11,_12,_0,_1,_13,_4,_14,_9,_7,_15,_16,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_11,_3,_12,_13,_14,_1,_5,_13,_1,_15,_8,_4,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_0 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_1 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_2 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_3 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_4 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_5 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_6 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_7 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_8 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_9 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_10 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_11 + [0,_1,_2,_3,_4,_5,_1,_1,_4,_6,_4,_7,_7,_8,_9,_9,_10,_6,_2,_11,_10,_0,_8,_6,_12,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_11,_6,_1,_12,_10,_13,_14,_11,_15,_16,_17,_12,_0,_6]_17 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_0 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_1 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_2 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_3 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_4 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_5 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_6 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_7 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_8 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_9 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_10 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_11 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_12 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_13 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_14 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_7,_2,_0,_8,_9,_10,_11,_12,_11,_6,_13,_14,_15,_13,_4,_10,_14]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_16 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_8,_9,_2,_10,_0,_9,_11,_3,_12,_5,_13,_14,_15,_16,_17,_9]_17 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_5,_7,_8,_9,_10,_11,_3,_10,_2,_12,_13,_14,_14,_8,_11,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_1,_10,_5,_11,_12,_13,_3,_12,_10,_14,_5,_4,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_5,_8,_3,_9,_10,_11,_12,_13,_5,_14,_4,_15,_16,_4,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_7,_8,_8,_9,_10,_10,_11,_2,_12,_13,_12,_10,_11,_12,_2,_14]_14 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_0 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_1 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_2 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_3 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_4 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_5 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_6 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_7 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_8 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_9 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_10 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_11 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_12 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_13 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_14 + [0,_1,_0,_2,_3,_4,_5,_0,_6,_7,_8,_7,_9,_3,_10,_4,_11,_12,_13,_5,_14,_10,_12,_2,_4,_15]_15 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_0 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_1 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_2 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_3 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_4 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_5 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_6 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_7 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_8 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_9 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_10 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_11 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_12 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_13 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_14 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_15 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_16 + [0,_1,_2,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_3,_11,_13,_14,_15,_8,_11,_16,_17,_6]_17 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_3,_1,_7,_3,_8,_9,_10,_11,_12,_2,_9,_13,_5,_14,_15,_2,_8,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_4,_9,_10,_8,_11,_12,_13,_11,_7,_14,_1,_15,_6,_16,_17,_16]_17 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_0 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_1 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_2 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_3 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_4 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_5 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_6 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_7 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_8 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_9 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_10 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_11 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_12 + [0,_1,_2,_1,_3,_0,_4,_5,_4,_6,_1,_5,_7,_2,_8,_4,_9,_0,_10,_8,_11,_6,_12,_0,_1,_13]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_6,_0,_7,_3,_8,_9,_10,_4,_2,_4,_11,_2,_1,_12,_9,_8,_13,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_9,_5,_10,_0,_11,_12,_13,_0,_5,_14,_3,_15,_16,_15,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_3,_8,_9,_10,_11,_12,_2,_4,_13,_6,_14,_15,_2,_10,_16,_17,_10]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_9,_5,_11,_10,_10,_12,_7,_8,_7,_8,_0,_13,_11,_14]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_2,_2,_8,_9,_10,_5,_11,_8,_12,_13,_9,_11,_14,_11,_10,_9,_12]_14 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_0 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_1 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_2 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_3 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_4 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_5 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_6 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_7 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_8 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_9 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_10 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_11 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_12 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_13 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_14 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_15 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_16 + [0,_1,_2,_1,_3,_4,_5,_0,_0,_6,_7,_8,_9,_5,_10,_7,_11,_8,_12,_13,_5,_14,_15,_16,_7,_17]_17 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_8,_10,_11,_0,_12,_0,_13,_14,_9,_6,_15,_5,_14,_16,_6]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_5,_7,_8,_9,_10,_11,_12,_9,_13,_14,_14,_1,_7,_15,_16,_0,_11,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_5,_8,_5,_9,_1,_10,_11,_12,_13,_14,_15,_0,_16,_13,_4,_9,_5]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_10,_10,_11,_4,_12,_13,_14,_15,_13,_13,_16,_17,_13,_9]_17 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_5,_8,_9,_3,_10,_11,_5,_12,_1,_6,_13,_9,_6,_4,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_0,_10,_11,_12,_6,_9,_13,_2,_2,_14,_2,_5,_11,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_9,_10,_3,_11,_12,_13,_13,_10,_14,_12,_9,_13,_5,_14,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_1,_11,_10,_12,_0,_6,_11,_13,_11,_14,_10,_15,_4,_8]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_13,_14,_11,_11,_6,_13,_15,_3,_2,_16,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_7,_15,_5,_5,_16,_8,_17,_5,_13,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_5,_12,_9,_0,_13,_10,_14,_15,_10,_10,_3,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_6,_8,_7,_5,_10,_11,_12,_0,_13,_14,_7,_15,_14,_16,_17]_17 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_5,_3,_6,_7,_8,_9,_10,_9,_9,_4,_11,_12,_13,_14,_0,_15,_9,_4]_15 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_0 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_1 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_2 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_3 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_4 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_5 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_6 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_7 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_8 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_9 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_10 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_11 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_12 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_5,_4,_8,_6,_9,_3,_10,_5,_0,_11,_12,_3,_0,_13,_7,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_11,_5,_1,_12,_13,_12,_5,_11,_3,_14,_15,_12,_7,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_7,_7,_10,_5,_5,_11,_4,_3,_12,_7,_13,_3,_12,_1,_9]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_0,_9,_7,_10,_5,_6,_5,_11,_12,_0,_13,_12,_14,_12,_3,_4]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_2,_7,_8,_9,_10,_11,_8,_12,_6,_12,_13,_0,_14,_0,_15,_14,_0,_16]_16 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_0 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_1 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_2 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_3 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_4 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_5 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_6 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_7 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_8 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_9 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_10 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_11 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_12 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_13 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_14 + [0,_1,_0,_0,_2,_3,_4,_1,_5,_6,_7,_8,_9,_6,_10,_11,_4,_12,_13,_14,_14,_1,_15,_11,_9,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_10,_14,_15,_6,_15,_16,_17,_11,_17,_7,_2]_17 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_8,_9,_8,_2,_10,_11,_10,_6,_1,_8,_12,_13,_14,_14,_15,_16,_1]_16 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_0 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_1 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_2 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_3 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_4 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_5 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_6 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_7 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_8 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_9 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_10 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_11 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_12 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_13 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_14 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_15 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_16 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_11,_12,_13,_3,_14,_6,_15,_15,_9,_16,_1,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_3,_10,_2,_11,_12,_13,_0,_14,_13,_9,_14,_15,_16,_17,_10]_17 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_6,_1,_7,_8,_9,_8,_9,_10,_4,_11,_12,_13,_12,_11,_10,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_1,_0,_1,_1,_6,_7,_1,_8,_9,_10,_1,_6,_2,_11,_12,_13,_14,_3,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_0,_8,_9,_10,_11,_12,_13,_13,_3,_11,_10,_4,_7,_0,_11,_14,_15]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_3,_7,_8,_9,_10,_4,_5,_0,_11,_12,_4,_13,_13,_1,_14,_12,_5,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_6,_8,_9,_10,_9,_8,_11,_12,_13,_14,_15,_8,_8,_2,_13,_16,_17]_17 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_0 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_1 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_2 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_3 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_4 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_5 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_6 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_7 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_8 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_9 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_10 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_11 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_12 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_13 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_14 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_15 + [0,_1,_2,_3,_1,_4,_3,_4,_1,_5,_6,_7,_8,_1,_9,_10,_11,_12,_13,_14,_5,_15,_5,_2,_10,_16]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_8,_9,_8,_0,_6,_10,_0,_11,_12,_13,_8,_14,_0,_15,_12,_15]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_9,_15,_16,_17,_13,_7,_13,_0]_17 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_0 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_1 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_2 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_3 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_4 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_5 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_6 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_7 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_8 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_9 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_10 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_11 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_12 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_13 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_14 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_15 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_16 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_17 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_18 + [0,_1,_2,_3,_4,_5,_4,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_16,_17,_18,_9,_13,_1,_19]_19 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_0 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_1 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_2 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_3 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_4 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_5 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_6 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_7 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_8 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_9 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_10 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_11 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_12 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_13 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_14 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_15 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_16 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_17 + [0,_1,_2,_3,_4,_5,_4,_1,_6,_7,_5,_8,_9,_10,_11,_12,_13,_14,_15,_3,_16,_13,_7,_17,_18,_11]_18 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_16 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_17 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_11,_12,_7,_4,_13,_14,_15,_16,_0,_17,_4,_0,_10,_18]_18 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_4,_9,_10,_11,_3,_12,_13,_14,_11,_2,_10,_2,_15,_16,_8,_12]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_4,_9,_10,_6,_11,_12,_8,_5,_13,_3,_6,_6,_14,_15,_1,_7]_15 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_0 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_1 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_2 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_3 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_4 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_5 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_6 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_7 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_8 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_9 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_10 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_11 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_12 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_13 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_14 + [0,_1,_2,_2,_1,_3,_4,_5,_2,_6,_1,_7,_8,_2,_9,_10,_11,_1,_9,_9,_12,_2,_13,_14,_5,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_1,_10,_11,_12,_1,_13,_8,_5,_9,_12,_1,_8,_11,_14,_15]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_3,_2,_8,_2,_9,_1,_10,_5,_11,_12,_4,_13,_12,_14,_15,_7,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_13,_11,_14,_15,_4,_1,_0,_16,_3,_14,_15,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_0,_10,_11,_3,_0,_9,_12,_13,_10,_1,_2,_11,_7,_8,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_4,_8,_10,_5,_11,_9,_12,_13,_14,_2,_15,_3,_9,_9,_13,_12]_15 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_7,_11,_10,_5,_2,_12,_13,_6,_8,_13,_2,_14,_2,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_3,_0,_11,_12,_13,_14,_15,_16,_17,_17,_4,_7,_18,_3]_18 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_0 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_1 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_2 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_3 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_4 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_5 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_6 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_7 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_8 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_9 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_10 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_11 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_12 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_13 + [0,_1,_0,_2,_3,_2,_2,_4,_5,_0,_6,_2,_7,_8,_9,_8,_2,_2,_10,_11,_12,_4,_1,_13,_1,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_0,_14,_5,_15,_10,_15,_2,_3,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_2,_2,_9,_10,_11,_6,_3,_1,_12,_7,_13,_14,_15,_4,_13,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_5,_8,_9,_10,_11,_12,_13,_4,_14,_7,_4,_15,_10,_10,_16,_17,_7]_17 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_0 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_1 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_2 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_3 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_4 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_5 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_6 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_7 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_8 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_9 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_10 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_11 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_12 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_13 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_14 + [0,_1,_2,_3,_2,_4,_3,_4,_4,_3,_5,_6,_5,_7,_4,_8,_7,_9,_10,_11,_12,_13,_14,_15,_2,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_2,_11,_12,_13,_2,_14,_9,_8,_8,_4,_13,_5,_8,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_7,_10,_9,_11,_11,_4,_12,_3,_13,_8,_10,_2,_14,_15,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_3,_12,_7,_13,_14,_15,_16,_17,_17,_13,_17,_18,_1]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_0,_10,_11,_7,_0,_2,_12,_7,_12,_2,_7,_13,_14,_11,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_7,_10,_1,_4,_7,_7,_11,_12,_13,_14,_0,_13,_14,_15,_16]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_3,_9,_9,_2,_10,_5,_8,_11,_2,_5,_12,_13,_14,_15,_8,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_8,_10,_11,_12,_13,_10,_5,_14,_9,_15,_0,_0,_16,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_3,_7,_0,_8,_9,_5,_9,_10,_3,_0,_11,_0,_3,_12,_3,_6,_4,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_1,_11,_12,_13,_14,_15,_16,_14,_7,_13,_17,_9,_18,_17,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_9,_12,_7,_7,_5,_13,_12,_12,_14,_15,_3,_7,_13]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_6,_6,_10,_11,_12,_13,_14,_15,_13,_4,_7,_3,_6,_16]_16 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_0 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_1 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_2 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_3 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_4 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_5 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_6 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_7 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_8 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_9 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_10 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_11 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_12 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_13 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_14 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_15 + [0,_1,_2,_3,_4,_5,_5,_1,_6,_0,_7,_8,_9,_10,_4,_11,_0,_12,_0,_13,_14,_15,_0,_0,_10,_16]_16 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_0 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_1 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_2 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_3 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_4 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_5 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_6 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_7 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_8 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_9 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_10 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_11 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_12 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_13 + [0,_1,_0,_2,_3,_4,_5,_5,_6,_7,_8,_9,_10,_4,_11,_0,_7,_1,_0,_12,_13,_2,_14,_1,_6,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_8,_13,_14,_15,_16,_2,_5,_17,_13,_13,_1,_18]_18 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_0 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_1 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_2 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_3 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_4 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_5 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_6 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_7 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_8 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_9 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_10 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_11 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_12 + [0,_1,_0,_2,_3,_2,_4,_5,_6,_7,_8,_5,_9,_3,_10,_0,_11,_4,_11,_12,_12,_12,_3,_13,_7,_6]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_1,_9,_1,_1,_10,_11,_12,_1,_13,_14,_14,_6,_15,_8,_16,_17]_17 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_0 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_1 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_2 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_3 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_4 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_5 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_6 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_7 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_8 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_9 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_10 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_11 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_12 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_13 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_2,_8,_9,_10,_11,_12,_13,_0,_4,_11,_10,_14,_2,_9,_13,_13]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_0,_7,_0,_8,_2,_1,_3,_9,_0,_10,_11,_6,_8,_12,_13,_2,_14,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_6,_8,_2,_0,_3,_9,_10,_11,_12,_9,_13,_14,_14,_5,_15,_16]_16 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_0 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_1 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_2 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_3 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_4 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_5 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_6 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_7 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_8 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_9 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_10 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_11 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_12 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_13 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_14 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_15 + [0,_1,_1,_2,_0,_3,_4,_5,_2,_6,_3,_7,_8,_9,_10,_11,_12,_13,_0,_11,_14,_13,_9,_8,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_4,_8,_9,_4,_10,_11,_12,_13,_14,_0,_0,_15,_16,_12,_13,_4,_15]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_4,_10,_11,_12,_13,_14,_5,_5,_15,_16,_10,_2,_17,_6,_7]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_9,_8,_0,_11,_12,_13,_14,_4,_12,_15,_9,_5,_4,_16,_15]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_2,_7,_8,_9,_10,_0,_11,_0,_12,_13,_14,_15,_16,_17,_15,_4,_3,_2]_17 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_1,_6,_8,_9,_10,_9,_6,_11,_12,_13,_14,_7,_1,_15,_7,_6,_3]_15 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_0 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_1 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_2 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_3 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_4 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_5 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_6 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_7 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_8 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_9 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_10 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_11 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_12 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_13 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_0,_6,_9,_10,_1,_11,_3,_1,_12,_0,_8,_13,_10,_3,_14]_14 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_0 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_1 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_2 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_3 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_4 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_5 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_6 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_7 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_8 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_9 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_10 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_11 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_12 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_13 + [0,_1,_2,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_11,_0,_9,_6,_12,_6,_5,_0,_13,_14,_0,_4,_3]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_3,_0,_9,_10,_11,_11,_5,_7,_12,_7,_7,_3,_1,_13,_14,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_5,_4,_7,_8,_9,_1,_10,_11,_0,_9,_12,_13,_0,_2,_14,_10,_15,_2]_15 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_5,_2,_8,_9,_10,_11,_10,_12,_13,_4,_14,_15,_0,_13,_2,_4,_14]_15 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_0 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_1 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_2 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_3 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_4 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_5 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_6 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_7 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_8 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_9 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_10 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_11 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_12 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_13 + [0,_0,_0,_1,_2,_3,_3,_1,_4,_5,_5,_6,_7,_4,_4,_8,_2,_7,_0,_9,_10,_11,_9,_12,_13,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_8,_9,_8,_10,_11,_12,_13,_14,_10,_15,_16,_8,_16,_15,_9,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_5,_4,_12,_13,_14,_15,_0,_2,_5,_2,_2,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_11,_9,_11,_0,_12,_13,_0,_14,_1,_11,_15,_9,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_11 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_12 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_13 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_14 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_8,_9,_10,_11,_10,_7,_1,_12,_0,_13,_14,_4,_15,_5,_11,_2]_15 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_0 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_1 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_2 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_3 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_4 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_5 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_6 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_7 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_8 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_9 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_10 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_11 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_12 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_13 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_14 + [0,_1,_2,_1,_3,_4,_2,_5,_6,_7,_8,_3,_9,_0,_10,_3,_8,_8,_11,_11,_12,_6,_13,_14,_15,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_7,_0,_9,_4,_12,_13,_8,_14,_7,_8,_13,_15,_16]_16 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_0 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_1 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_2 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_3 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_4 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_5 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_6 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_7 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_8 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_9 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_10 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_11 + [0,_1,_0,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_3,_4,_10,_5,_11,_9,_3,_10,_9,_4,_12,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_0,_8,_9,_10,_11,_1,_3,_12,_2,_13,_9,_14,_15,_0,_16,_17,_3]_17 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_0 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_1 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_2 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_3 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_4 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_5 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_6 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_7 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_8 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_9 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_10 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_11 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_12 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_13 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_14 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_15 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_16 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_9,_5,_0,_10,_11,_6,_12,_13,_14,_10,_15,_11,_0,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_0 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_1 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_2 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_3 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_4 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_5 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_6 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_7 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_8 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_9 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_10 + [0,_1,_2,_3,_4,_5,_5,_6,_7,_8,_9,_5,_2,_10,_6,_6,_1,_10,_4,_11,_0,_7,_6,_5,_2,_7]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_6,_7,_6,_8,_9,_10,_5,_11,_12,_13,_4,_14,_3,_15,_10,_16,_17,_15]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_2,_7,_4,_17,_5,_15,_0,_5,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_12,_4,_1,_8,_2,_13,_11,_14,_14,_15,_4,_16,_11]_16 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_0 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_1 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_2 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_3 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_4 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_5 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_6 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_7 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_8 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_9 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_10 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_11 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_12 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_13 + [0,_1,_2,_3,_0,_3,_4,_5,_6,_6,_7,_8,_9,_6,_10,_4,_6,_2,_11,_12,_3,_13,_11,_12,_2,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_10,_5,_9,_3,_11,_5,_12,_13,_0,_0,_14,_15,_14,_4,_16]_16 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_0 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_1 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_2 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_3 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_4 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_5 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_6 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_7 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_8 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_9 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_10 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_11 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_12 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_13 + [0,_0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_5,_7,_10,_1,_11,_2,_12,_13,_13,_1,_7,_7,_14,_4]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_16 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_0,_15,_16,_17,_15,_15,_0,_17,_1,_11]_17 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_1,_12,_9,_6,_10,_11,_13,_14,_15,_13,_1,_10,_1]_15 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_0 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_1 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_2 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_3 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_4 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_5 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_6 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_7 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_8 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_9 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_10 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_11 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_12 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_13 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_14 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_15 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_16 + [0,_1,_2,_3,_0,_4,_5,_4,_6,_7,_0,_8,_9,_10,_11,_12,_1,_13,_4,_6,_14,_13,_15,_2,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_8,_9,_2,_10,_11,_12,_9,_2,_12,_13,_14,_1,_15,_12,_14,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_2,_0,_4,_13,_8,_14,_15,_16,_17,_6,_18,_12,_0]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_8,_11,_12,_12,_10,_13,_1,_8,_9,_14,_12,_7,_15,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_4,_6,_6,_8,_12,_13,_14,_5,_15,_0,_16,_17]_17 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_6,_7,_8,_8,_5,_9,_10,_11,_9,_12,_13,_14,_15,_13,_9,_14,_4,_16]_16 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_15 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_16 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_14,_12,_0,_14,_3,_15,_16,_17,_0,_4]_17 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_0,_9,_2,_10,_11,_12,_10,_2,_13,_1,_8,_1,_14,_1,_3,_5]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_0,_8,_9,_8,_10,_1,_9,_11,_6,_12,_13,_14,_1,_15,_7,_1,_10]_15 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_0 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_1 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_2 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_3 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_4 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_5 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_6 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_7 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_8 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_9 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_10 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_11 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_12 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_13 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_14 + [0,_1,_2,_2,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_8,_9,_15,_12,_12]_15 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_0 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_1 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_2 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_3 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_4 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_5 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_6 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_7 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_8 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_9 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_10 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_11 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_12 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_13 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_14 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_15 + [0,_1,_2,_0,_3,_4,_5,_3,_4,_0,_6,_7,_8,_9,_5,_10,_11,_12,_6,_13,_0,_14,_15,_11,_12,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_7,_10,_11,_12,_13,_14,_10,_1,_15,_5,_12,_13,_7,_6,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_5,_9,_10,_11,_12,_13,_10,_4,_10,_14,_11,_15,_16,_12,_17]_17 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_0 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_1 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_2 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_3 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_4 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_5 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_6 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_7 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_8 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_9 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_10 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_11 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_12 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_13 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_14 + [0,_1,_2,_3,_0,_4,_0,_5,_0,_6,_7,_3,_7,_8,_9,_1,_7,_10,_11,_12,_4,_13,_14,_15,_6,_7]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_0,_12,_13,_10,_10,_14,_9,_7,_1,_15,_6,_16,_16]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_1,_8,_4,_9,_10,_11,_12,_4,_1,_13,_2,_11,_3,_14,_15,_0,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_4,_2,_11,_12,_13,_14,_11,_15,_16,_12,_11,_4,_10,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_8,_9,_10,_11,_12,_8,_5,_13,_14,_10,_8,_12,_8,_0,_15,_12]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_16 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_11,_0,_3,_13,_1,_14,_13,_4,_8,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_9,_10,_3,_11,_4,_12,_13,_2,_8,_14,_0,_8,_5,_2,_15]_15 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_0 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_1 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_2 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_3 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_4 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_5 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_6 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_7 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_8 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_9 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_10 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_11 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_12 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_13 + [0,_1,_2,_3,_1,_4,_2,_5,_6,_3,_7,_8,_0,_9,_0,_8,_8,_10,_5,_11,_5,_5,_12,_13,_1,_14]_14 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_0 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_1 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_2 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_3 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_4 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_5 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_6 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_7 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_8 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_9 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_10 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_11 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_12 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_13 + [0,_0,_1,_2,_3,_1,_4,_2,_1,_2,_5,_6,_0,_6,_7,_8,_6,_9,_10,_2,_11,_12,_13,_14,_0,_5]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_17 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_18 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_9,_10,_11,_12,_1,_13,_14,_15,_10,_16,_12,_16,_6,_17,_18,_19]_19 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_0 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_1 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_2 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_3 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_4 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_5 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_6 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_7 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_8 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_9 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_10 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_11 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_12 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_13 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_14 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_15 + [0,_1,_2,_0,_3,_4,_1,_5,_3,_6,_7,_8,_9,_7,_3,_10,_11,_9,_12,_13,_9,_14,_15,_16,_5,_5]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_5,_4,_9,_10,_11,_1,_0,_10,_12,_8,_13,_14,_3,_0,_4]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_0,_7,_8,_9,_9,_2,_7,_7,_3,_10,_2,_11,_12,_13,_7,_14,_15,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_6,_8,_10,_11,_1,_12,_1,_13,_14,_9,_15,_15,_16,_17,_9]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_5,_9,_10,_11,_2,_1,_0,_12,_13,_6,_14,_15,_1,_14,_14,_16]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_2,_8,_11,_12,_13,_5,_14,_14,_10,_1,_15,_16,_3,_17]_17 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_0 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_1 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_2 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_3 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_4 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_5 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_6 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_7 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_8 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_9 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_10 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_11 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_12 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_13 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_14 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_15 + [0,_1,_2,_3,_2,_0,_1,_4,_5,_6,_7,_3,_8,_9,_10,_11,_12,_13,_14,_5,_1,_9,_15,_13,_16,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_7,_9,_3,_7,_10,_11,_2,_12,_13,_14,_3,_15,_16,_17]_17 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_0 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_1 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_2 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_3 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_4 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_5 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_6 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_7 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_8 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_9 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_10 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_11 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_12 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_13 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_14 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_15 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_16 + [0,_1,_2,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_12,_15,_9,_11,_15,_11,_16,_17]_17 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_0 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_1 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_2 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_3 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_4 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_5 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_6 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_7 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_8 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_9 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_10 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_11 + [0,_1,_2,_0,_1,_3,_4,_5,_6,_7,_6,_3,_8,_5,_7,_2,_9,_10,_11,_9,_10,_8,_12,_2,_3,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_1,_8,_9,_10,_11,_6,_6,_10,_10,_3,_9,_2,_12,_7,_13,_7,_0]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_1,_8,_9,_10,_7,_10,_5,_3,_11,_12,_7,_13,_7,_8,_14,_15,_3]_15 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_0 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_1 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_2 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_3 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_4 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_5 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_6 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_7 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_8 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_9 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_10 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_11 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_12 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_13 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_14 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_15 + [0,_0,_1,_2,_3,_4,_1,_5,_6,_7,_1,_8,_9,_10,_11,_12,_7,_12,_4,_12,_13,_14,_15,_16,_10,_14]_16 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_0 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_1 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_2 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_3 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_4 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_5 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_6 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_7 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_8 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_9 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_10 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_11 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_12 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_13 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_14 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_15 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_16 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_17 + [0,_0,_0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_2,_11,_7,_12,_13,_14,_15,_16,_17,_18,_4,_17]_18 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_6,_7,_0,_8,_9,_10,_11,_12,_5,_13,_14,_10,_5,_10,_10,_0,_9,_4]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_16 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_17 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_10,_11,_6,_12,_10,_12,_13,_9,_14,_15,_16,_17,_2,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_7,_7,_4,_8,_11,_10,_12,_13,_6,_14,_15,_15,_0,_10]_15 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_0 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_1 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_2 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_3 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_4 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_5 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_6 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_7 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_8 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_9 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_10 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_11 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_12 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_13 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_14 + [0,_1,_2,_3,_4,_1,_5,_3,_3,_6,_7,_8,_9,_10,_11,_12,_6,_12,_4,_13,_14,_13,_6,_4,_15,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_10,_1,_8,_11,_3,_12,_5,_13,_9,_14,_7,_15,_16,_8,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_3,_10,_11,_12,_13,_1,_14,_15,_14,_0,_16,_7,_17,_8,_8]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_5,_3,_0,_8,_9,_10,_5,_11,_12,_13,_14,_1,_15,_16,_14,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_4,_3,_5,_9,_12,_13,_14,_11,_15,_1,_3,_8,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_3,_11,_6,_9,_12,_9,_13,_8,_9,_5,_3,_12,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_16 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_17 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_2,_12,_12,_13,_14,_15,_2,_16,_17,_3,_18,_13,_2]_18 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_17 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_18 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_6,_12,_0,_13,_14,_15,_16,_12,_17,_17,_18,_0,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_1,_9,_2,_10,_11,_12,_6,_13,_14,_10,_15,_1,_13,_1,_16,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_5,_1,_2,_7,_4,_8,_5,_4,_4,_8,_9,_2,_4,_8,_10,_10,_9,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_4,_9,_10,_11,_0,_0,_12,_13,_14,_2,_8,_15,_1,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_6,_2,_9,_9,_2,_8,_10,_11,_2,_12,_13,_7,_0,_14,_5,_15]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_12,_5,_4,_13,_4,_5,_14,_15,_6,_12,_16,_17,_13]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_2,_8,_0,_9,_9,_10,_1,_11,_12,_13,_14,_5,_15,_11,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_3,_8,_5,_9,_6,_10,_11,_4,_8,_12,_13,_10,_14,_4,_2,_15,_15]_15 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_0 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_1 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_2 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_3 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_4 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_5 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_6 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_7 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_8 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_9 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_10 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_11 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_12 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_13 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_14 + [0,_1,_2,_3,_4,_5,_4,_3,_5,_0,_6,_2,_7,_8,_9,_9,_10,_11,_2,_3,_12,_13,_3,_14,_15,_0]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_4,_5,_7,_8,_3,_9,_4,_3,_10,_2,_11,_12,_3,_5,_1,_13,_11,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_6,_6,_7,_8,_7,_0,_9,_10,_11,_12,_13,_14,_15,_15,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_0 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_1 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_2 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_3 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_4 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_5 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_6 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_7 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_8 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_9 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_10 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_11 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_12 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_13 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_14 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_15 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_16 + [0,_1,_2,_3,_4,_5,_2,_3,_6,_7,_4,_6,_4,_8,_9,_10,_11,_12,_4,_13,_14,_15,_16,_15,_17,_1]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_4,_7,_4,_3,_10,_11,_9,_12,_13,_13,_14,_15,_11,_13,_16]_16 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_16 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_17 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_6,_7,_3,_9,_10,_11,_6,_12,_13,_14,_15,_9,_16,_17,_18,_4]_18 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_9,_5,_8,_3,_10,_11,_12,_13,_14,_15,_16,_16,_9,_17,_11,_10]_17 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_3,_6,_9,_10,_11,_12,_10,_8,_13,_0,_14,_10,_15,_5,_16,_16]_16 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_4,_2,_9,_10,_7,_11,_10,_12,_9,_13,_8,_10,_14,_15,_9,_5]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_4,_7,_7,_8,_9,_7,_10,_11,_12,_13,_7,_13,_2,_14,_15,_16,_17,_1]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_4,_8,_9,_10,_11,_12,_13,_14,_1,_14,_15,_16,_16,_17,_18,_19,_20]_20 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_11,_7,_12,_10,_2,_13,_0,_0,_4,_14,_9,_15,_15,_16]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_0,_0,_2,_9,_10,_2,_11,_12,_13,_1,_14,_10,_1,_0,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_6,_3,_4,_14,_9,_15,_16,_17,_18,_16,_5]_18 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_0 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_1 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_2 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_3 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_4 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_5 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_6 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_7 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_8 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_9 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_10 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_11 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_12 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_13 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_14 + [0,_1,_2,_3,_4,_3,_5,_3,_6,_7,_6,_8,_2,_9,_10,_11,_12,_5,_13,_3,_14,_15,_15,_9,_15,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_0,_3,_9,_2,_5,_10,_11,_12,_3,_10,_13,_2,_14,_5,_3,_15]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_1,_7,_8,_0,_5,_9,_10,_11,_12,_10,_13,_14,_7,_3,_2,_15,_12,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_2,_16,_13,_10,_11,_3,_10,_9,_5,_2]_16 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_16 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_0,_11,_1,_12,_2,_0,_9,_13,_14,_5,_15,_16,_17,_0]_17 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_0 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_1 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_2 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_3 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_4 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_5 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_6 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_7 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_8 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_9 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_10 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_11 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_12 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_13 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_14 + [0,_0,_1,_2,_3,_4,_5,_4,_3,_6,_7,_8,_9,_10,_8,_11,_12,_9,_7,_5,_11,_13,_5,_14,_15,_11]_15 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_0 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_1 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_2 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_3 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_4 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_5 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_6 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_7 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_8 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_9 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_10 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_11 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_12 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_13 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_14 + [0,_1,_2,_3,_4,_2,_4,_5,_6,_7,_2,_8,_5,_9,_10,_11,_2,_12,_13,_8,_3,_14,_15,_4,_2,_8]_15 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_0 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_1 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_2 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_3 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_4 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_5 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_6 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_7 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_8 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_9 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_10 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_11 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_12 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_13 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_14 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_7,_8,_9,_10,_11,_12,_7,_13,_14,_11,_0,_15,_1,_9,_1,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_4,_3,_7,_8,_9,_9,_1,_9,_10,_4,_0,_11,_12,_8,_13,_13,_13,_10]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_9,_1,_10,_11,_5,_12,_13,_14,_2,_15,_16,_15,_14,_17,_16]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_4,_11,_12,_13,_14,_15,_14,_8,_13,_13,_16,_2,_12,_17,_11]_17 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_0 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_1 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_2 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_3 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_4 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_5 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_6 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_7 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_8 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_9 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_10 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_11 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_12 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_13 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_14 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_15 + [0,_1,_2,_3,_3,_4,_5,_5,_0,_6,_7,_8,_3,_9,_10,_3,_11,_9,_12,_13,_1,_14,_15,_16,_5,_13]_16 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_0 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_1 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_2 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_3 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_4 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_5 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_6 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_7 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_8 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_9 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_10 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_11 + [0,_1,_2,_1,_3,_4,_3,_5,_6,_0,_6,_7,_3,_0,_8,_9,_1,_6,_10,_9,_6,_7,_7,_11,_12,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_11,_12,_2,_11,_13,_14,_13,_15,_15,_16,_2,_14,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_10,_8,_1,_6,_11,_9,_7,_12,_0,_4,_3,_8,_13,_3]_13 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_0 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_1 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_2 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_3 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_4 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_5 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_6 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_7 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_8 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_9 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_10 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_11 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_12 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_13 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_14 + [0,_1,_2,_0,_3,_4,_4,_5,_6,_7,_8,_5,_9,_10,_2,_11,_11,_11,_12,_13,_14,_13,_10,_7,_15,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_10,_7,_11,_12,_13,_12,_14,_1,_15,_6,_2,_7,_16,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_8,_12,_13,_2,_8,_4,_10,_14,_12,_6,_1,_15,_16,_17]_17 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_0,_12,_6,_13,_12,_14,_15,_16,_2,_3,_5,_17]_17 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_2,_9,_10,_6,_9,_11,_12,_13,_14,_15,_16,_17,_0,_3,_1,_7]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_6,_10,_11,_12,_13,_6,_14,_13,_15,_16,_17,_5,_6,_17,_14]_17 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_0 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_1 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_2 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_3 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_4 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_5 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_6 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_7 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_8 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_9 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_10 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_11 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_12 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_13 + [0,_1,_2,_3,_4,_3,_3,_5,_6,_7,_8,_9,_10,_7,_11,_6,_11,_2,_12,_13,_8,_14,_5,_4,_0,_12]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_8,_9,_7,_11,_12,_13,_14,_9,_11,_12,_3,_13,_15,_9]_15 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_0 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_1 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_2 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_3 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_4 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_5 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_6 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_7 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_8 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_9 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_10 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_11 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_12 + [0,_1,_2,_3,_1,_4,_3,_3,_0,_5,_6,_6,_7,_3,_6,_8,_7,_8,_9,_8,_10,_11,_12,_13,_0,_11]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_7,_9,_10,_2,_11,_3,_12,_13,_4,_14,_12,_5,_15,_0,_9,_5]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_18 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_19 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_6,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_18,_0,_11]_20 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_4,_6,_4,_10,_11,_12,_13,_2,_14,_0,_7,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_1,_9,_6,_10,_9,_11,_12,_13,_14,_12,_15,_16,_17,_18,_19,_14,_15]_19 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_7,_8,_6,_9,_10,_11,_9,_12,_13,_0,_14,_0,_15,_16,_16,_17,_18]_18 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_0 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_1 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_2 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_3 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_4 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_5 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_6 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_7 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_8 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_9 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_10 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_11 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_12 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_13 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_14 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_15 + [0,_1,_2,_1,_3,_4,_4,_5,_6,_1,_7,_8,_9,_10,_4,_11,_4,_12,_1,_13,_3,_14,_15,_11,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_12,_13,_7,_3,_9,_11,_14,_3,_4,_15,_14,_4,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_8,_10,_5,_11,_12,_13,_4,_12,_14,_0,_15,_16,_3,_17]_17 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_0 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_1 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_2 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_3 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_4 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_5 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_6 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_7 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_8 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_9 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_10 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_11 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_12 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_13 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_14 + [0,_1,_2,_3,_4,_3,_1,_5,_6,_7,_4,_8,_1,_9,_2,_10,_8,_11,_0,_9,_12,_9,_13,_14,_0,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_1,_8,_9,_10,_11,_10,_9,_12,_7,_13,_7,_7,_14,_9,_15,_15]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_3,_7,_8,_0,_9,_3,_10,_11,_1,_0,_3,_12,_13,_14,_15,_1,_10,_8]_15 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_0 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_1 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_2 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_3 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_4 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_5 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_6 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_7 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_8 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_9 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_10 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_11 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_12 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_13 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_14 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_15 + [0,_1,_2,_3,_4,_0,_0,_5,_6,_7,_8,_9,_10,_11,_12,_13,_9,_1,_6,_14,_11,_15,_16,_15,_4,_11]_16 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_0 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_1 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_2 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_3 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_4 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_5 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_6 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_7 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_8 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_9 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_10 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_11 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_12 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_13 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_14 + [0,_1,_2,_0,_3,_4,_1,_5,_6,_7,_8,_9,_10,_1,_1,_11,_2,_2,_3,_12,_13,_3,_14,_15,_6,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_8,_5,_9,_10,_4,_1,_2,_11,_12,_8,_7,_2,_13,_14,_15,_16]_16 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_0 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_1 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_2 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_3 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_4 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_5 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_6 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_7 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_8 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_9 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_10 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_11 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_12 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_13 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_14 + [0,_1,_2,_3,_2,_4,_4,_5,_6,_0,_7,_8,_0,_2,_9,_6,_10,_11,_12,_13,_6,_14,_14,_15,_0,_11]_15 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_0,_2,_6,_7,_8,_7,_9,_10,_8,_7,_11,_12,_13,_5,_0,_14,_6,_5,_15,_16]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_9,_11,_1,_0,_12,_13,_14,_10,_6,_12,_1,_15,_0,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_2,_10,_5,_11,_12,_13,_14,_15,_4,_7,_9,_16,_13,_7,_1,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_11,_12,_13,_14,_13,_6,_9,_1,_15,_1,_16,_12,_0,_17]_17 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_0 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_1 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_2 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_3 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_4 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_5 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_6 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_7 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_8 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_9 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_10 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_11 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_12 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_13 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_14 + [0,_1,_2,_3,_4,_2,_5,_0,_6,_4,_7,_8,_9,_10,_11,_12,_0,_5,_13,_1,_9,_6,_14,_15,_3,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_1,_4,_7,_8,_9,_10,_11,_12,_4,_13,_1,_14,_15,_9,_0,_16,_17,_12,_6]_17 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_0,_0,_0,_8,_9,_10,_11,_2,_5,_12,_0,_5,_13,_6,_8,_14,_1]_14 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_0 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_1 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_2 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_3 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_4 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_5 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_6 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_7 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_8 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_9 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_10 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_11 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_12 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_13 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_14 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_15 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_4,_0,_8,_9,_10,_11,_12,_13,_14,_13,_12,_8,_11,_15,_16]_16 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_0 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_1 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_2 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_3 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_4 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_5 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_6 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_7 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_8 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_9 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_10 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_11 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_12 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_13 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_14 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_15 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_16 + [0,_1,_2,_3,_0,_4,_5,_4,_4,_6,_7,_8,_9,_10,_11,_8,_12,_13,_4,_4,_14,_3,_15,_9,_16,_17]_17 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_0 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_1 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_2 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_3 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_4 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_5 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_6 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_7 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_8 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_9 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_10 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_11 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_12 + [0,_1,_2,_2,_3,_2,_4,_5,_6,_2,_7,_8,_6,_9,_2,_2,_10,_7,_9,_6,_11,_12,_13,_4,_3,_1]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_8,_9,_10,_0,_11,_12,_12,_13,_14,_15,_0,_16,_13,_10,_17,_8,_13]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_10,_11,_12,_13,_4,_9,_14,_15,_16,_17,_14,_2,_18,_2,_19]_19 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_17 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_1,_0,_13,_14,_15,_10,_4,_16,_17,_18,_11]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_4,_3,_3,_10,_4,_10,_8,_2,_12,_7,_0,_8,_13]_13 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_0 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_1 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_2 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_3 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_4 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_5 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_6 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_7 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_8 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_9 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_10 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_11 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_12 + [0,_1,_2,_3,_4,_5,_3,_3,_6,_7,_8,_9,_0,_0,_5,_10,_11,_9,_12,_13,_2,_2,_12,_9,_3,_6]_13 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_0 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_1 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_2 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_3 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_4 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_5 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_6 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_7 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_8 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_9 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_10 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_11 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_12 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_13 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_14 + [0,_1,_1,_2,_3,_4,_5,_1,_2,_6,_7,_5,_8,_7,_6,_0,_9,_10,_11,_5,_8,_12,_13,_2,_14,_15]_15 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_0 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_1 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_2 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_3 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_4 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_5 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_6 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_7 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_8 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_9 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_10 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_11 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_12 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_13 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_14 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_15 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_0,_8,_9,_3,_10,_11,_12,_13,_14,_13,_15,_2,_2,_16,_11,_6]_16 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_0 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_1 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_2 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_3 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_4 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_5 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_6 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_7 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_8 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_9 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_10 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_11 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_12 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_13 + [0,_1,_2,_3,_4,_2,_5,_3,_6,_3,_7,_8,_9,_10,_3,_11,_7,_6,_10,_12,_13,_14,_7,_4,_14,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_6,_3,_10,_1,_9,_1,_2,_11,_12,_13,_9,_8,_14,_11,_9,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_6,_12,_13,_14,_9,_4,_15,_16,_12,_17,_0,_8,_13]_17 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_0 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_1 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_2 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_3 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_4 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_5 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_6 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_7 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_8 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_9 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_10 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_11 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_12 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_13 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_14 + [0,_1,_1,_2,_3,_0,_3,_4,_5,_6,_7,_5,_8,_0,_4,_9,_3,_10,_11,_12,_3,_13,_14,_8,_8,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_7,_8,_9,_2,_5,_10,_0,_1,_11,_12,_13,_14,_15,_16,_17,_18]_18 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_0 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_1 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_2 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_3 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_4 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_5 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_6 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_7 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_8 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_9 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_10 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_11 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_12 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_13 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_14 + [0,_1,_2,_3,_1,_0,_4,_5,_6,_7,_8,_9,_6,_10,_11,_8,_12,_6,_3,_13,_14,_0,_14,_1,_15,_11]_15 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_0 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_1 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_2 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_3 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_4 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_5 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_6 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_7 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_8 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_9 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_10 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_11 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_12 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_13 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_14 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_15 + [0,_1,_2,_0,_3,_4,_2,_5,_6,_7,_8,_0,_9,_10,_9,_1,_11,_12,_13,_5,_14,_15,_7,_15,_8,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_7,_9,_9,_10,_10,_11,_2,_12,_12,_11,_13,_7,_14,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_9,_10,_11,_7,_11,_12,_13,_14,_1,_15,_16,_17,_18,_5,_10]_18 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_1,_7,_8,_9,_0,_5,_10,_1,_11,_11,_6,_12,_3,_3,_4,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_14 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_15 + [0,_1,_2,_3,_4,_5,_4,_6,_1,_7,_8,_0,_2,_9,_10,_11,_12,_13,_14,_3,_15,_5,_10,_2,_8,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_7,_8,_9,_7,_10,_0,_5,_11,_12,_13,_9,_9,_5,_14,_15,_12,_7]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_13,_8,_14,_1,_15,_13,_9,_6,_3,_0,_16]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_5,_2,_7,_8,_3,_9,_1,_10,_11,_3,_11,_12,_13,_14,_10,_8,_11,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_9,_3,_2,_10,_9,_1,_10,_9,_7,_9,_11,_7,_12,_13,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_5,_8,_5,_9,_10,_6,_1,_2,_5,_6,_11,_12,_13,_5,_14,_4,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_10,_11,_8,_12,_8,_9,_4,_13,_14,_1,_15,_4,_10,_16,_3]_16 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_0 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_1 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_2 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_3 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_4 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_5 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_6 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_7 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_8 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_9 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_10 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_11 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_12 + [0,_1,_2,_3,_4,_5,_4,_0,_6,_7,_4,_6,_5,_5,_8,_6,_9,_7,_0,_10,_1,_3,_11,_12,_8,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_1,_9,_10,_3,_11,_12,_6,_10,_9,_13,_14,_5,_1,_15,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_9,_11,_12,_5,_13,_5,_14,_15,_16,_17,_14,_18,_1,_19]_19 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_5,_8,_7,_2,_9,_10,_11,_4,_12,_13,_4,_14,_13,_15,_16,_17,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_8,_3,_8,_9,_10,_7,_11,_11,_3,_3,_8,_7,_12,_5,_11,_9,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_1,_8,_2,_9,_10,_11,_3,_11,_0,_12,_13,_7,_14,_9,_14,_9,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_8,_11,_12,_13,_7,_12,_14,_15,_0,_10,_0,_16,_1,_7,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_5,_10,_2,_0,_11,_7,_12,_13,_14,_2,_15,_15,_3,_3,_16,_2]_16 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_1,_7,_7,_8,_9,_8,_10,_11,_12,_13,_14,_6,_15,_14,_16,_2,_1,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_4,_4,_10,_0,_11,_3,_12,_13,_14,_7,_15,_3,_16,_8,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_5,_8,_9,_8,_10,_0,_11,_0,_5,_12,_12,_13,_14,_4,_15,_16,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_10,_11,_9,_3,_5,_12,_0,_13,_2,_14,_5,_11,_15,_13,_16]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_0 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_1 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_2 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_3 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_4 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_5 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_6 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_7 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_8 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_9 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_10 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_11 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_12 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_13 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_14 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_15 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_16 + [0,_1,_2,_3,_3,_4,_5,_6,_7,_7,_8,_6,_5,_9,_9,_10,_11,_12,_13,_14,_15,_16,_4,_17,_14,_8]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_18 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_8,_9,_10,_5,_11,_12,_13,_14,_15,_2,_16,_17,_3,_7,_14,_18,_19]_19 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_0 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_1 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_2 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_3 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_4 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_5 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_6 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_7 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_8 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_9 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_10 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_11 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_12 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_13 + [0,_1,_2,_3,_4,_5,_5,_2,_6,_1,_3,_7,_8,_9,_10,_0,_11,_6,_9,_9,_12,_13,_14,_5,_4,_9]_14 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_0 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_1 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_2 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_3 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_4 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_5 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_6 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_7 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_8 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_9 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_10 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_11 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_12 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_13 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_14 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_15 + [0,_1,_2,_3,_3,_1,_4,_5,_2,_6,_7,_8,_9,_10,_7,_11,_10,_12,_2,_13,_14,_6,_1,_15,_8,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_4,_10,_4,_5,_7,_11,_3,_6,_1,_9,_3,_12,_13,_9,_13]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_0 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_1 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_2 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_3 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_4 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_5 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_6 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_7 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_8 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_9 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_10 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_11 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_12 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_13 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_14 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_15 + [0,_1,_0,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_3,_11,_12,_13,_12,_14,_1,_3,_13,_15,_0,_16,_5]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_2,_10,_11,_12,_5,_3,_13,_14,_1,_15,_13,_16,_17,_11]_17 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_0,_14,_13,_12,_5,_15,_16,_0,_17,_3,_2]_17 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_2,_11,_12,_13,_0,_14,_14,_15,_8,_11,_9,_16,_8,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_4,_3,_7,_2,_8,_9,_7,_7,_10,_11,_4,_12,_13,_14,_15,_16,_17,_16,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_6,_8,_3,_9,_10,_3,_11,_9,_12,_4,_13,_14,_2,_4,_0,_5,_15]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_2,_8,_9,_10,_1,_0,_11,_5,_12,_13,_12,_14,_15,_16,_15,_3,_7]_16 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_0 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_1 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_2 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_3 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_4 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_5 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_6 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_7 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_8 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_9 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_10 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_11 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_12 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_13 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_14 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_15 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_16 + [0,_1,_2,_3,_2,_1,_2,_4,_5,_6,_7,_8,_5,_9,_10,_11,_0,_6,_12,_13,_13,_14,_2,_15,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_10,_2,_6,_13,_14,_1,_12,_15,_6,_11,_16,_17]_17 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_5,_7,_8,_9,_10,_11,_12,_5,_2,_13,_14,_10,_1,_15,_3,_0,_12,_1]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_17 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_18 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_5,_3,_11,_12,_5,_13,_1,_14,_15,_1,_16,_17,_18,_19]_19 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_0 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_1 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_2 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_3 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_4 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_5 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_6 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_7 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_8 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_9 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_10 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_11 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_12 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_13 + [0,_1,_2,_3,_1,_4,_5,_1,_3,_1,_6,_7,_8,_9,_10,_11,_1,_12,_13,_2,_2,_6,_9,_8,_6,_14]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_16 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_17 + [0,_1,_2,_3,_4,_4,_5,_6,_2,_7,_8,_3,_9,_10,_11,_12,_13,_14,_15,_16,_17,_1,_1,_17,_18,_14]_18 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_10,_4,_8,_4,_15,_1,_16,_7,_10,_14]_16 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_0 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_1 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_2 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_3 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_4 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_5 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_6 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_7 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_8 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_9 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_10 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_11 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_12 + [0,_1,_2,_0,_3,_1,_4,_3,_5,_6,_7,_8,_9,_10,_6,_11,_12,_12,_10,_13,_6,_5,_0,_1,_10,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_1,_0,_8,_7,_9,_10,_11,_4,_5,_11,_4,_12,_11,_13,_14,_13,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_7,_5,_7,_2,_8,_5,_9,_10,_5,_11,_4,_1,_7,_10,_9,_12,_13]_13 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_0 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_1 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_2 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_3 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_4 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_5 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_6 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_7 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_8 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_9 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_10 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_11 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_12 + [0,_1,_2,_3,_4,_1,_3,_5,_4,_5,_6,_7,_4,_8,_9,_10,_5,_1,_1,_11,_0,_12,_10,_9,_0,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_6,_7,_8,_9,_10,_11,_9,_5,_12,_4,_5,_8,_2,_10,_13,_10,_13,_9,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_8,_9,_10,_11,_1,_10,_0,_12,_8,_7,_13,_2,_14,_6,_0,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_11,_12,_13,_11,_14,_3,_11,_10,_5,_15,_16,_3,_1,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_9,_10,_8,_10,_3,_9,_11,_12,_11,_13,_14,_14,_15,_16,_10,_5]_16 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_0 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_1 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_2 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_3 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_4 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_5 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_6 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_7 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_8 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_9 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_10 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_11 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_12 + [0,_1,_2,_1,_3,_3,_4,_4,_5,_3,_3,_6,_7,_8,_4,_9,_3,_6,_10,_2,_5,_11,_12,_13,_13,_6]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_7,_8,_9,_8,_10,_8,_11,_12,_7,_13,_11,_10,_0,_1,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_11,_12,_13,_13,_7,_12,_14,_15,_11,_14,_3,_11,_10,_9]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_17 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_18 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_19 + [0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_2,_9,_10,_11,_12,_3,_13,_14,_0,_15,_16,_15,_17,_18,_19,_20]_20 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_6,_2,_4,_2,_9,_8,_10,_11,_6,_1,_10,_12,_7,_13,_10,_14]_14 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_0 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_1 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_2 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_3 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_4 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_5 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_6 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_7 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_8 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_9 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_10 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_11 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_12 + [0,_1,_1,_0,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_1,_1,_10,_9,_3,_11,_12,_4,_13,_8,_9,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_2,_5,_14,_15,_16,_9,_17,_13,_17,_7,_15,_0]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_7,_9,_10,_10,_11,_12,_11,_13,_0,_11,_5,_3,_14,_15,_13,_8,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_10,_11,_12,_13,_12,_8,_12,_14,_15,_3,_4,_16,_10,_7,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_8,_10,_11,_6,_0,_1,_12,_2,_12,_8,_6,_7,_4,_13]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_1,_7,_5,_8,_6,_1,_9,_10,_5,_3,_11,_5,_12,_13,_5,_13,_11,_14]_14 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_0 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_1 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_2 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_3 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_4 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_5 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_6 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_7 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_8 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_9 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_10 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_11 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_12 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_13 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_14 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_15 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_16 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_17 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_18 + [0,_1,_2,_3,_4,_2,_5,_2,_6,_7,_4,_8,_9,_10,_11,_12,_13,_14,_4,_15,_16,_17,_0,_18,_0,_19]_19 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_15 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_8,_9,_10,_8,_7,_11,_1,_12,_2,_13,_14,_15,_12,_3,_2,_12,_16]_16 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_14 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_9,_10,_11,_12,_11,_13,_14,_13,_14,_15,_5,_16,_9,_13,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_17 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_9,_10,_11,_12,_13,_14,_8,_5,_15,_16,_17,_12,_18,_0,_2,_16]_18 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_0 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_1 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_2 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_3 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_4 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_5 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_6 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_7 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_8 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_9 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_10 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_11 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_12 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_13 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_14 + [0,_1,_2,_1,_3,_1,_4,_5,_6,_7,_8,_9,_3,_9,_10,_11,_12,_11,_6,_13,_14,_3,_1,_5,_15,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_9,_3,_2,_10,_11,_6,_12,_13,_2,_14,_2,_3,_2,_8,_11,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_0,_3,_8,_9,_3,_10,_5,_11,_12,_13,_2,_0,_13,_14,_15,_7,_13]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_9,_10,_11,_12,_4,_13,_9,_3,_12,_14,_3,_12,_15,_16,_5,_8]_16 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_0 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_1 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_2 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_3 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_4 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_5 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_6 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_7 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_8 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_9 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_10 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_11 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_12 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_13 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_14 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_15 + [0,_1,_2,_3,_1,_1,_0,_4,_5,_6,_7,_8,_4,_9,_10,_11,_12,_12,_10,_6,_13,_0,_14,_15,_1,_16]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_9,_2,_14,_7,_15,_3,_16,_1,_1,_17]_17 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_2,_8,_3,_9,_10,_4,_7,_7,_11,_12,_13,_11,_14,_10,_7,_15,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_3,_3,_6,_9,_10,_11,_11,_12,_2,_1,_13,_8,_11,_9,_14,_15]_15 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_4,_0,_4,_7,_8,_9,_10,_11,_4,_8,_9,_12,_10,_13,_6,_14,_15,_11]_15 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_0 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_1 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_2 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_3 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_4 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_5 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_6 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_7 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_8 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_9 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_10 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_11 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_12 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_13 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_14 + [0,_1,_2,_3,_4,_0,_5,_0,_6,_7,_8,_9,_10,_11,_11,_7,_11,_12,_13,_7,_7,_14,_10,_4,_2,_15]_15 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_0 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_1 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_2 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_3 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_4 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_5 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_6 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_7 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_8 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_9 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_10 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_11 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_12 + [0,_1,_2,_3,_2,_4,_5,_1,_4,_6,_7,_3,_8,_9,_10,_10,_11,_12,_5,_13,_9,_10,_8,_6,_9,_9]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_10,_9,_0,_12,_10,_2,_13,_14,_9,_15,_16,_15,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_2,_9,_9,_10,_11,_12,_6,_11,_2,_8,_11,_13,_14,_15,_10,_12,_16]_16 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_1,_7,_5,_7,_3,_8,_9,_10,_11,_5,_12,_13,_3,_14,_15,_0,_16,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_0,_8,_1,_7,_9,_4,_7,_7,_10,_11,_12,_10,_7,_13,_6,_4]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_0 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_1 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_2 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_3 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_4 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_5 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_6 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_7 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_8 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_9 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_10 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_11 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_12 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_13 + [0,_1,_2,_3,_4,_5,_4,_6,_7,_6,_2,_8,_9,_10,_9,_9,_11,_12,_12,_13,_5,_6,_8,_14,_3,_13]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_17 + [0,_1,_2,_3,_4,_0,_5,_6,_1,_7,_6,_8,_9,_10,_11,_6,_12,_13,_14,_15,_4,_16,_15,_12,_17,_18]_18 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_2,_7,_8,_9,_5,_10,_11,_8,_6,_12,_13,_12,_14,_15,_7,_12,_16,_0]_16 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_0 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_1 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_2 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_3 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_4 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_5 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_6 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_7 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_8 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_9 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_10 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_11 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_12 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_13 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_14 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_15 + [0,_0,_1,_2,_3,_3,_4,_5,_2,_5,_6,_1,_7,_8,_9,_10,_11,_12,_0,_13,_8,_14,_15,_4,_7,_16]_16 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_0 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_1 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_2 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_3 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_4 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_5 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_6 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_7 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_8 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_9 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_10 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_11 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_12 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_13 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_14 + [0,_1,_2,_0,_3,_4,_4,_0,_5,_6,_7,_8,_0,_9,_10,_11,_12,_6,_13,_10,_14,_3,_15,_0,_4,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_5,_9,_10,_6,_11,_12,_0,_10,_8,_13,_14,_1,_15,_13,_2,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_1,_11,_12,_13,_14,_9,_9,_1,_7,_15,_11,_5,_4,_10]_15 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_0 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_1 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_2 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_3 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_4 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_5 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_6 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_7 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_8 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_9 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_10 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_11 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_12 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_13 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_14 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_15 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_16 + [0,_1,_2,_3,_4,_5,_0,_3,_6,_7,_8,_9,_10,_6,_11,_12,_13,_9,_8,_8,_14,_0,_15,_16,_17,_12]_17 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_0 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_1 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_2 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_3 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_4 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_5 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_6 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_7 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_8 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_9 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_10 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_11 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_12 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_13 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_14 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_15 + [0,_1,_2,_3,_4,_0,_2,_0,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_7,_14,_11,_15,_7,_5,_16,_16]_16 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_4,_5,_3,_6,_7,_8,_9,_10,_2,_0,_11,_12,_4,_12,_13,_14,_15,_11,_16,_17]_17 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_6,_0,_2,_8,_9,_3,_10,_5,_11,_12,_13,_6,_7,_13,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_0 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_1 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_2 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_3 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_4 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_5 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_6 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_7 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_8 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_9 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_10 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_11 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_12 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_13 + [0,_1,_2,_3,_4,_5,_2,_1,_6,_7,_5,_8,_9,_10,_3,_2,_5,_2,_11,_11,_8,_8,_5,_12,_13,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_10,_0,_11,_8,_7,_12,_2,_3,_9,_6,_6,_13,_0,_5,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_2,_8,_9,_10,_7,_9,_3,_11,_12,_13,_14,_15,_15,_16,_2,_13,_6]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_0,_10,_11,_2,_12,_1,_13,_14,_3,_15,_9,_13,_16,_3,_6]_16 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_0 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_1 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_2 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_3 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_4 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_5 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_6 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_7 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_8 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_9 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_10 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_11 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_12 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_13 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_14 + [0,_1,_2,_3,_3,_4,_5,_5,_6,_7,_8,_9,_0,_10,_11,_1,_2,_12,_9,_2,_13,_2,_11,_14,_15,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_14,_15,_16,_7,_5,_17,_18,_7,_19,_10,_18]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_9,_10,_11,_12,_13,_6,_14,_10,_15,_16,_17,_18,_16,_19,_0]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_19 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_20 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_13,_14,_7,_15,_16,_17,_17,_18,_19,_3,_20,_21]_21 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_0,_5,_1,_7,_5,_8,_9,_10,_6,_11,_6,_11,_9,_12,_10,_13,_4,_7]_13 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_0 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_1 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_2 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_3 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_4 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_5 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_6 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_7 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_8 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_9 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_10 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_11 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_12 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_13 + [0,_1,_0,_2,_3,_2,_4,_1,_5,_6,_7,_6,_4,_8,_6,_9,_10,_11,_10,_4,_9,_12,_13,_0,_11,_14]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_6,_7,_8,_1,_8,_8,_9,_4,_10,_11,_10,_7,_12,_13,_1,_14,_12,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_0,_7,_8,_9,_9,_10,_11,_9,_12,_10,_0,_13,_1,_9,_2,_12,_14,_15,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_4,_7,_3,_3,_8,_0,_9,_10,_1,_9,_8,_11,_8,_12,_13,_11,_0,_10,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_11,_4,_12,_5,_13,_12,_3,_14,_15,_16,_11,_17,_7,_13]_17 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_0 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_1 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_2 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_3 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_4 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_5 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_6 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_7 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_8 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_9 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_10 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_11 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_12 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_13 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_14 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_15 + [0,_1,_2,_3,_4,_5,_0,_0,_2,_6,_7,_8,_9,_10,_11,_12,_13,_6,_14,_14,_14,_15,_16,_12,_9,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_3,_10,_5,_11,_12,_13,_5,_14,_15,_10,_16,_17,_18,_4,_8]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_6,_9,_10,_11,_12,_6,_0,_12,_13,_7,_6,_14,_15,_16,_8,_17]_17 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_4,_5,_3,_8,_9,_10,_11,_12,_5,_11,_13,_1,_1,_14,_6,_10,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_8,_9,_10,_4,_11,_12,_2,_13,_13,_14,_9,_14,_15,_11,_6,_3,_7]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_1,_7,_5,_8,_1,_9,_6,_0,_10,_11,_3,_12,_13,_14,_12,_0,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_12,_13,_0,_10,_3,_10,_14,_5,_15,_15,_7,_8,_0]_15 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_0 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_1 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_2 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_3 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_4 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_5 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_6 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_7 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_8 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_9 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_10 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_11 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_12 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_13 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_14 + [0,_1,_2,_3,_4,_1,_5,_3,_6,_7,_8,_4,_9,_9,_10,_5,_2,_11,_5,_12,_13,_11,_7,_14,_8,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_0,_8,_9,_10,_11,_12,_13,_14,_15,_5,_6,_16,_10,_6,_17,_18,_3]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_0,_9,_10,_11,_11,_7,_12,_0,_13,_14,_2,_12,_15,_16,_14,_12]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_15 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_4,_9,_10,_7,_4,_11,_1,_8,_12,_9,_8,_13,_14,_2,_15,_16]_16 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_0 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_1 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_2 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_3 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_4 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_5 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_6 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_7 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_8 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_9 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_10 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_11 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_12 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_13 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_14 + [0,_1,_2,_3,_2,_4,_5,_1,_6,_4,_2,_1,_1,_7,_8,_9,_10,_9,_11,_5,_12,_3,_13,_5,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_5,_6,_10,_7,_4,_11,_12,_3,_7,_3,_2,_3,_2,_12,_7]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_10,_3,_1,_11,_4,_12,_4,_2,_5,_13,_14,_1,_5,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_7,_8,_7,_9,_5,_10,_11,_5,_1,_9,_0,_12,_13,_14,_15,_16,_8,_6]_16 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_0 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_1 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_2 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_3 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_4 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_5 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_6 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_7 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_8 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_9 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_10 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_11 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_12 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_13 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_14 + [0,_1,_2,_3,_4,_3,_5,_0,_5,_6,_7,_8,_9,_10,_11,_3,_12,_13,_10,_0,_6,_14,_0,_15,_4,_6]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_1,_6,_1,_10,_11,_9,_12,_4,_13,_14,_0,_14,_4,_15,_6,_4]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_8,_9,_10,_9,_11,_0,_12,_13,_3,_8,_5,_2,_14,_10,_1,_2,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_6,_13,_14,_10,_14,_7,_15,_16,_10,_17,_18,_7,_11]_18 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_0 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_1 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_2 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_3 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_4 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_5 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_6 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_7 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_8 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_9 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_10 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_11 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_12 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_13 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_14 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_15 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_16 + [0,_1,_2,_3,_4,_5,_3,_6,_7,_8,_9,_10,_11,_12,_13,_10,_14,_15,_16,_11,_4,_5,_17,_7,_14,_5]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_5,_9,_10,_11,_4,_12,_13,_14,_9,_15,_16,_0,_13,_17,_5,_5,_10]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_1,_0,_12,_0,_9,_13,_14,_15,_15,_16,_17,_1,_1,_18]_18 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_5,_7,_7,_8,_1,_9,_10,_11,_4,_12,_3,_13,_14,_15,_16,_15,_14,_17]_17 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_0 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_1 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_2 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_3 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_4 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_5 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_6 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_7 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_8 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_9 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_10 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_11 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_12 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_13 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_14 + [0,_1,_2,_2,_3,_4,_2,_3,_5,_6,_2,_2,_7,_8,_9,_10,_11,_10,_12,_10,_5,_12,_13,_14,_15,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_6,_8,_7,_9,_9,_10,_5,_6,_11,_9,_0,_12,_2,_13,_14,_3,_0,_15]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_7,_5,_8,_9,_1,_10,_11,_6,_8,_11,_12,_8,_6,_13,_14,_15,_13,_5]_15 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_0 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_1 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_2 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_3 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_4 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_5 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_6 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_7 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_8 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_9 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_10 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_11 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_12 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_13 + [0,_1,_2,_2,_3,_4,_5,_6,_7,_8,_9,_4,_0,_10,_6,_11,_12,_1,_13,_9,_1,_5,_2,_7,_11,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_5,_7,_8,_9,_10,_11,_7,_3,_12,_5,_2,_13,_14,_15,_3,_12,_16,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_18 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_3,_9,_2,_13,_14,_15,_10,_8,_16,_17,_18,_19,_14]_19 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_1,_7,_8,_9,_10,_7,_11,_10,_12,_13,_8,_14,_2,_15,_13,_6,_1,_16,_17]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_4,_2,_0,_10,_11,_12,_13,_14,_3,_15,_6,_16,_17,_18,_2]_18 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_12 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_13 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_14 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_15 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_16 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_3,_9,_2,_5,_10,_11,_8,_7,_12,_13,_14,_2,_15,_4,_16,_17]_17 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_0 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_1 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_2 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_3 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_4 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_5 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_6 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_7 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_8 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_9 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_10 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_11 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_12 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_13 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_14 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_15 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_16 + [0,_0,_1,_2,_3,_4,_5,_6,_4,_7,_8,_9,_10,_4,_8,_11,_12,_13,_11,_14,_9,_15,_16,_17,_5,_4]_17 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_15 + [0,_1,_2,_3,_4,_5,_2,_6,_2,_7,_4,_8,_9,_10,_11,_0,_2,_0,_12,_5,_13,_7,_14,_15,_9,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_8,_10,_8,_2,_11,_6,_12,_13,_14,_15,_2,_2,_9,_16,_17,_9]_17 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_0 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_1 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_2 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_3 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_4 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_5 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_6 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_7 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_8 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_9 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_10 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_11 + [0,_1,_2,_3,_2,_4,_5,_6,_7,_8,_9,_10,_11,_7,_12,_2,_12,_0,_3,_6,_8,_5,_3,_2,_0,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_8,_1,_1,_5,_9,_10,_11,_12,_2,_7,_7,_5,_9,_13,_14,_15,_16]_16 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_0 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_1 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_2 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_3 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_4 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_5 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_6 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_7 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_8 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_9 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_10 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_11 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_12 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_13 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_14 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_15 + [0,_1,_2,_3,_4,_2,_5,_6,_7,_8,_9,_0,_10,_11,_10,_6,_12,_13,_14,_4,_15,_16,_2,_11,_5,_13]_16 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_0 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_1 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_2 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_3 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_4 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_5 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_6 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_7 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_8 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_9 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_10 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_11 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_12 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_13 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_14 + [0,_1,_2,_3,_4,_2,_2,_5,_6,_7,_8,_2,_9,_10,_11,_12,_6,_10,_13,_6,_12,_14,_15,_4,_1,_14]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_6,_2,_14,_8,_15,_5,_2,_6,_16,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_0 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_1 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_2 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_3 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_4 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_5 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_6 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_7 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_8 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_9 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_10 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_11 + [0,_1,_2,_3,_4,_5,_6,_0,_6,_0,_5,_1,_6,_7,_6,_8,_9,_0,_10,_11,_4,_8,_2,_10,_12,_10]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_0 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_1 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_2 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_3 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_4 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_5 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_6 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_7 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_8 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_9 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_10 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_11 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_12 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_13 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_14 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_15 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_16 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_17 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_18 + [0,_1,_2,_3,_4,_0,_5,_6,_7,_8,_9,_10,_11,_12,_10,_3,_13,_14,_7,_15,_15,_16,_17,_18,_19,_7]_19 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_0 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_1 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_2 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_3 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_4 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_5 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_6 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_7 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_8 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_9 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_10 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_11 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_12 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_13 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_14 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_15 + [0,_1,_2,_3,_4,_1,_5,_6,_7,_3,_0,_8,_9,_4,_10,_11,_7,_12,_13,_6,_7,_14,_15,_2,_16,_12]_16 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_0 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_1 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_2 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_3 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_4 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_5 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_6 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_7 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_8 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_9 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_10 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_11 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_12 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_13 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_14 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_15 + [0,_1,_2,_0,_3,_4,_5,_6,_7,_6,_8,_8,_9,_10,_11,_12,_13,_10,_14,_2,_13,_15,_13,_16,_12,_2]_16 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_14 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_15 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_8,_9,_10,_0,_10,_8,_11,_12,_8,_13,_14,_15,_14,_12,_2,_15,_16]_16 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_0 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_1 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_2 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_3 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_4 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_5 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_6 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_7 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_8 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_9 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_10 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_11 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_12 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_13 + [0,_1,_2,_3,_3,_1,_4,_4,_3,_5,_6,_7,_7,_8,_8,_9,_1,_10,_11,_12,_8,_4,_11,_2,_13,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_3,_10,_1,_11,_12,_12,_6,_13,_8,_14,_2,_11,_4,_6,_3,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_5,_7,_8,_9,_3,_10,_11,_10,_0,_4,_4,_8,_12,_2,_13,_14,_3,_6,_15]_15 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_0 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_1 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_2 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_3 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_4 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_5 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_6 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_7 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_8 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_9 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_10 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_11 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_12 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_13 + [0,_1,_2,_3,_2,_4,_1,_5,_3,_6,_7,_8,_9,_10,_4,_11,_12,_12,_8,_7,_1,_0,_13,_5,_14,_12]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_6,_9,_8,_9,_10,_11,_12,_6,_11,_13,_14,_8,_15,_16,_7,_11,_4]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_2,_2,_7,_8,_9,_10,_4,_11,_12,_2,_2,_6,_13,_13,_14,_15,_16,_17,_13]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_2,_0,_8,_0,_9,_7,_10,_10,_11,_12,_5,_10,_7,_13,_0,_14,_11,_15]_15 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_0 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_1 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_2 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_3 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_4 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_5 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_6 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_7 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_8 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_9 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_10 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_11 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_12 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_13 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_14 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_15 + [0,_1,_2,_0,_3,_0,_4,_5,_6,_4,_5,_4,_7,_8,_8,_6,_9,_10,_11,_12,_11,_13,_14,_15,_16,_5]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_6,_0,_4,_11,_8,_6,_12,_13,_12,_14,_15,_16,_17,_18,_0]_18 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_0 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_1 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_2 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_3 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_4 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_5 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_6 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_7 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_8 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_9 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_10 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_11 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_12 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_13 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_14 + [0,_1,_2,_1,_3,_3,_4,_5,_6,_7,_1,_8,_2,_9,_10,_10,_11,_12,_13,_10,_14,_13,_4,_0,_15,_10]_15 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_0 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_1 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_2 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_3 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_4 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_5 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_6 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_7 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_8 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_9 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_10 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_11 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_12 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_13 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_14 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_15 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_16 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_17 + [0,_1,_1,_2,_3,_4,_5,_1,_6,_7,_8,_3,_9,_10,_11,_12,_13,_4,_11,_14,_9,_0,_15,_16,_17,_18]_18 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_1,_2,_4,_2,_4,_4,_8,_9,_10,_7,_7,_10,_3,_0,_5,_4,_4]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_6,_8,_9,_10,_11,_12,_11,_11,_9,_3,_12,_12,_13,_14,_0,_12]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_0 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_1 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_2 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_3 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_4 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_5 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_6 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_7 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_8 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_9 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_10 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_11 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_12 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_13 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_14 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_15 + [0,_1,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_10,_11,_12,_13,_3,_14,_4,_12,_2,_8,_12,_4,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_3,_2,_2,_2,_2,_7,_8,_6,_9,_6,_10,_7,_11,_12,_3,_13,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_7,_8,_9,_10,_11,_12,_13,_14,_0,_10,_6,_15,_6,_12,_14,_13,_16,_17]_17 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_0 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_1 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_2 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_3 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_4 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_5 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_6 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_7 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_8 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_9 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_10 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_11 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_12 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_13 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_14 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_15 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_16 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_17 + [0,_1,_2,_3,_1,_4,_5,_2,_6,_7,_8,_8,_9,_10,_11,_12,_13,_14,_15,_16,_15,_3,_8,_6,_17,_18]_18 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_2,_1,_10,_1,_11,_12,_4,_1,_1,_11,_0,_13,_3,_4,_8]_13 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_0 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_1 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_2 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_3 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_4 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_5 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_6 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_7 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_8 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_9 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_10 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_11 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_12 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_13 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_14 + [0,_0,_1,_1,_2,_3,_4,_2,_5,_0,_6,_1,_7,_8,_9,_9,_10,_11,_8,_12,_13,_6,_12,_14,_0,_15]_15 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_0 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_1 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_2 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_3 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_4 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_5 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_6 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_7 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_8 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_9 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_10 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_11 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_12 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_13 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_14 + [0,_1,_2,_3,_4,_3,_5,_6,_0,_7,_5,_0,_8,_9,_10,_9,_11,_0,_12,_2,_4,_13,_14,_3,_10,_15]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_0 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_1 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_2 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_3 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_4 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_5 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_6 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_7 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_8 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_9 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_10 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_11 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_12 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_13 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_14 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_15 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_16 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_17 + [0,_1,_2,_3,_4,_5,_1,_6,_7,_1,_8,_9,_7,_10,_11,_12,_13,_14,_11,_11,_0,_12,_15,_16,_17,_18]_18 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_0 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_1 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_2 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_3 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_4 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_5 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_6 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_7 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_8 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_9 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_10 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_11 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_12 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_13 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_14 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_15 + [0,_1,_2,_3,_2,_3,_4,_5,_6,_7,_8,_8,_9,_4,_10,_8,_11,_3,_12,_2,_13,_14,_15,_4,_16,_14]_16 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_0 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_1 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_2 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_3 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_4 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_5 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_6 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_7 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_8 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_9 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_10 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_11 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_12 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_13 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_14 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_15 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_16 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_17 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_18 + [0,_0,_1,_2,_3,_4,_5,_3,_6,_7,_3,_8,_9,_6,_10,_11,_6,_12,_12,_13,_14,_15,_16,_17,_18,_19]_19 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_0 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_1 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_2 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_3 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_4 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_5 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_6 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_7 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_8 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_9 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_10 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_11 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_12 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_13 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_14 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_15 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_16 + [0,_1,_2,_3,_4,_5,_0,_6,_7,_8,_9,_10,_11,_0,_12,_11,_13,_14,_2,_6,_15,_13,_3,_16,_17,_8]_17 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_0 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_1 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_2 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_3 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_4 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_5 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_6 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_7 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_8 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_9 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_10 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_11 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_12 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_13 + [0,_1,_2,_3,_0,_0,_4,_3,_4,_5,_6,_7,_1,_8,_9,_10,_11,_12,_13,_8,_2,_10,_2,_12,_14,_10]_14 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_0 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_1 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_2 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_3 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_4 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_5 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_6 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_7 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_8 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_9 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_10 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_11 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_12 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_13 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_14 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_15 + [0,_1,_1,_2,_3,_1,_4,_5,_6,_5,_7,_8,_9,_10,_11,_2,_12,_10,_10,_4,_9,_13,_14,_15,_16,_12]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_5,_0,_11,_12,_13,_14,_15,_16,_17,_6,_9,_16,_0,_9]_17 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_3,_11,_3,_1,_12,_13,_9,_14,_15,_10,_11,_16,_17,_11]_17 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_0 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_1 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_2 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_3 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_4 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_5 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_6 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_7 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_8 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_9 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_10 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_11 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_12 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_13 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_14 + [0,_0,_1,_2,_2,_3,_4,_5,_3,_6,_4,_7,_8,_5,_9,_5,_10,_7,_11,_12,_13,_4,_14,_12,_15,_12]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_8,_9,_0,_10,_8,_11,_12,_13,_14,_12,_13,_5,_15,_16,_17,_14,_8]_17 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_0 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_1 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_2 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_3 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_4 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_5 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_6 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_7 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_8 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_9 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_10 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_11 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_12 + [0,_1,_0,_2,_3,_3,_4,_5,_6,_6,_4,_4,_7,_1,_8,_3,_9,_6,_10,_11,_11,_12,_6,_13,_12,_10]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_10,_11,_4,_12,_13,_13,_5,_14,_11,_6,_15,_11,_14,_10,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_7,_11,_12,_13,_14,_2,_12,_4,_10,_11,_9,_4,_15,_16,_4]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_7,_3,_10,_0,_11,_9,_12,_13,_1,_5,_1,_6,_14,_15,_7,_16]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_5,_3,_8,_9,_1,_10,_8,_2,_10,_11,_12,_4,_13,_14,_4,_15,_16,_9]_16 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_0 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_1 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_2 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_3 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_4 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_5 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_6 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_7 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_8 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_9 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_10 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_11 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_12 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_13 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_14 + [0,_1,_2,_3,_0,_0,_1,_4,_5,_6,_7,_8,_9,_3,_10,_11,_8,_12,_10,_11,_12,_13,_8,_3,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_0,_2,_7,_6,_1,_10,_8,_5,_11,_12,_13,_14,_15,_11,_16,_5]_16 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_0 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_1 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_2 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_3 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_4 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_5 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_6 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_7 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_8 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_9 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_10 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_11 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_12 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_13 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_14 + [0,_1,_2,_3,_0,_4,_5,_6,_7,_3,_8,_9,_10,_11,_1,_12,_9,_9,_10,_13,_14,_0,_10,_11,_15,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_9,_2,_5,_13,_6,_0,_13,_3,_14,_15,_11,_15,_16]_16 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_0 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_1 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_2 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_3 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_4 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_5 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_6 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_7 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_8 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_9 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_10 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_11 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_12 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_13 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_14 + [0,_1,_2,_3,_4,_5,_2,_6,_7,_8,_9,_10,_11,_5,_12,_13,_9,_9,_14,_11,_8,_11,_0,_13,_8,_15]_15 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_0 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_1 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_2 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_3 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_4 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_5 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_6 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_7 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_8 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_9 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_10 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_11 + [0,_1,_2,_3,_2,_4,_0,_5,_6,_7,_8,_4,_9,_0,_10,_7,_7,_11,_11,_7,_5,_12,_6,_7,_8,_9]_12 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_0 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_1 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_2 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_3 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_4 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_5 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_6 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_7 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_8 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_9 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_10 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_11 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_12 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_13 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_14 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_15 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_16 + [0,_0,_1,_2,_3,_4,_3,_5,_6,_7,_8,_5,_9,_10,_11,_12,_13,_14,_15,_16,_17,_17,_2,_8,_12,_2]_17 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_13 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_14 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_8,_8,_9,_4,_10,_1,_11,_0,_12,_13,_14,_15,_15,_9,_15,_11,_13]_15 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_0 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_1 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_2 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_3 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_4 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_5 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_6 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_7 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_8 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_9 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_10 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_11 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_12 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_13 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_14 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_15 + [0,_1,_2,_3,_3,_4,_5,_1,_6,_7,_0,_8,_9,_10,_9,_11,_3,_1,_12,_13,_6,_14,_15,_16,_4,_16]_16 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_0 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_1 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_2 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_3 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_4 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_5 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_6 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_7 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_8 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_9 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_10 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_11 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_12 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_13 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_14 + [0,_1,_2,_1,_3,_4,_5,_6,_7,_8,_2,_9,_0,_5,_10,_0,_9,_11,_9,_12,_2,_13,_2,_1,_14,_15]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_4,_8,_9,_5,_1,_10,_11,_12,_13,_9,_11,_14,_10,_11,_15,_9,_16,_17]_17 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_0 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_1 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_2 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_3 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_4 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_5 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_6 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_7 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_8 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_9 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_10 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_11 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_12 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_13 + [0,_1,_2,_3,_2,_4,_1,_5,_0,_6,_2,_6,_3,_4,_7,_5,_8,_2,_9,_10,_11,_4,_12,_12,_13,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_0 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_1 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_2 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_3 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_4 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_5 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_6 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_7 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_8 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_9 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_10 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_11 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_12 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_13 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_14 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_15 + [0,_1,_2,_3,_4,_5,_6,_3,_7,_1,_8,_9,_10,_11,_9,_12,_13,_14,_15,_4,_16,_11,_16,_15,_13,_13]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_0,_8,_9,_10,_11,_12,_13,_10,_14,_15,_11,_16,_10,_0,_12,_16,_6,_0]_16 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_0 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_1 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_2 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_3 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_4 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_5 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_6 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_7 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_8 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_9 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_10 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_11 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_12 + [0,_1,_2,_3,_1,_4,_5,_6,_7,_2,_8,_9,_0,_7,_2,_10,_3,_11,_3,_12,_13,_2,_3,_3,_12,_12]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_0 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_1 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_2 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_3 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_4 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_5 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_6 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_7 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_8 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_9 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_10 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_11 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_12 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_13 + [0,_1,_2,_3,_4,_4,_5,_6,_7,_5,_2,_8,_8,_9,_10,_7,_11,_9,_12,_13,_10,_11,_11,_6,_5,_14]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_0 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_1 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_2 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_3 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_4 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_5 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_6 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_7 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_8 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_9 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_10 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_11 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_12 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_13 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_14 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_15 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_16 + [0,_1,_2,_3,_4,_5,_6,_7,_8,_3,_9,_10,_10,_11,_12,_6,_13,_14,_2,_6,_15,_6,_16,_17,_10,_1]_17 + D +End diff --git a/closest_string_assignment_2/validator.py b/closest_string_assignment_2/validator.py old mode 100644 new mode 100755 index 97165d7..60f05f2 --- a/closest_string_assignment_2/validator.py +++ b/closest_string_assignment_2/validator.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python """ usage: python3 validator.py path/to/input path/to/output """